@portone/server-sdk
    Preparing search index...

    Type Alias IssuedCashReceipt

    발급 완료

    type IssuedCashReceipt = {
        status: "ISSUED";
        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;
        statusUpdatedAt?: string;
    }
    Index

    Properties

    status: "ISSUED"

    현금영수증 상태

    merchantId: string

    고객사 아이디

    storeId: string

    상점 아이디

    paymentId: string

    결제 건 아이디

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

    amount: number

    결제 금액 (int64)

    taxFreeAmount?: number

    면세액 (int64)

    vatAmount?: number

    부가세액 (int64)

    currency: Currency

    통화

    orderName: string

    주문명

    isManual: boolean

    수동 발급 여부

    현금영수증 유형

    pgReceiptId?: string

    PG사 현금영수증 아이디

    issueNumber: string

    승인 번호

    url?: string

    현금영수증 URL

    issuedAt: string

    발급 시점 (RFC 3339 date-time)

    statusUpdatedAt?: string

    상태 업데이트 시점 (RFC 3339 date-time)