타입 별칭 CancelledPaymentCashReceipt

CancelledPaymentCashReceipt: {
    status: "CANCELLED";
    type?: CashReceiptType;
    pgReceiptId?: string;
    issueNumber: string;
    totalAmount: number;
    taxFreeAmount?: number;
    currency: Currency;
    url?: string;
    issuedAt: string;
    cancelledAt: string;
}

취소된 현금영수증

타입 선언

  • status: "CANCELLED"

    결제 건 내 현금영수증 상태

  • Optionaltype?: CashReceiptType

    현금영수증 유형

  • OptionalpgReceiptId?: string

    PG사 영수증 발급 아이디

  • issueNumber: string

    승인 번호

  • totalAmount: number

    총 금액

  • OptionaltaxFreeAmount?: number

    면세액

  • currency: Currency

    통화

  • Optionalurl?: string

    현금영수증 URL

  • issuedAt: string

    발급 시점

  • cancelledAt: string

    취소 시점