UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

15 lines (14 loc) 608 B
import type { Unrecognized } from "./../../utils/unrecognized.js"; import type { CancelledPaymentCashReceipt } from "./../payment/CancelledPaymentCashReceipt.js"; import type { IssuedPaymentCashReceipt } from "./../payment/IssuedPaymentCashReceipt.js"; /** 결제 건 내 현금영수증 정보 */ export type PaymentCashReceipt = /** 발급 취소 */ CancelledPaymentCashReceipt /** 발급 완료 */ | IssuedPaymentCashReceipt | { readonly status: Unrecognized; }; export declare function isUnrecognizedPaymentCashReceipt(entity: PaymentCashReceipt): entity is { readonly status: Unrecognized; };