타입 별칭 CancelledCashReceipt

CancelledCashReceipt: {
    status: "CANCELLED";
    merchantId: string;
    storeId: string;
    paymentId: string;
    channel: SelectedChannel;
    amount: number;
    taxFreeAmount?: number;
    vatAmount?: number;
    currency: Currency;
    orderName: string;
    isManual: boolean;
    type?: CashReceiptType;
    pgReceiptId?: string;
    issueNumber: string;
    url?: string;
    issuedAt: string;
    cancelledAt: string;
}

발급 취소

타입 선언

  • status: "CANCELLED"

    현금영수증 상태

  • merchantId: string

    고객사 아이디

  • storeId: string

    상점 아이디

  • paymentId: string

    결제 건 아이디

  • channel: SelectedChannel

    현금영수증 발급에 사용된 채널

  • amount: number

    결제 금액

  • OptionaltaxFreeAmount?: number

    면세액

  • OptionalvatAmount?: number

    부가세액

  • currency: Currency

    통화

  • orderName: string

    주문명

  • isManual: boolean

    수동 발급 여부

  • Optionaltype?: CashReceiptType

    현금영수증 유형

  • OptionalpgReceiptId?: string

    PG사 현금영수증 아이디

  • issueNumber: string

    승인번호

  • Optionalurl?: string

    현금영수증 URL

  • issuedAt: string

    발급 시점

  • cancelledAt: string

    취소 시점