@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
18 lines (17 loc) • 908 B
TypeScript
import type { Unrecognized } from "./../../../utils/unrecognized.js";
import type { BillingKeyPaymentMethodCard } from "./../../payment/billingKey/BillingKeyPaymentMethodCard.js";
import type { BillingKeyPaymentMethodEasyPayCharge } from "./../../payment/billingKey/BillingKeyPaymentMethodEasyPayCharge.js";
import type { BillingKeyPaymentMethodTransfer } from "./../../payment/billingKey/BillingKeyPaymentMethodTransfer.js";
/** 간편 결제 수단 */
export type BillingKeyPaymentMethodEasyPayMethod =
/** 카드 정보 */
BillingKeyPaymentMethodCard
/** 충전식 포인트 결제 정보 */
| BillingKeyPaymentMethodEasyPayCharge
/** 계좌이체 정보 */
| BillingKeyPaymentMethodTransfer | {
readonly type: Unrecognized;
};
export declare function isUnrecognizedBillingKeyPaymentMethodEasyPayMethod(entity: BillingKeyPaymentMethodEasyPayMethod): entity is {
readonly type: Unrecognized;
};