@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
27 lines (26 loc) • 1.31 kB
TypeScript
import type { Unrecognized } from "./../../../utils/unrecognized.js";
import type { PlatformPaymentMethodCard } from "./../../platform/transfer/PlatformPaymentMethodCard.js";
import type { PlatformPaymentMethodEasyPay } from "./../../platform/transfer/PlatformPaymentMethodEasyPay.js";
import type { PlatformPaymentMethodGiftCertificate } from "./../../platform/transfer/PlatformPaymentMethodGiftCertificate.js";
import type { PlatformPaymentMethodMobile } from "./../../platform/transfer/PlatformPaymentMethodMobile.js";
import type { PlatformPaymentMethodTransfer } from "./../../platform/transfer/PlatformPaymentMethodTransfer.js";
import type { PlatformPaymentMethodVirtualAccount } from "./../../platform/transfer/PlatformPaymentMethodVirtualAccount.js";
/** 결제 수단 */
export type PlatformPaymentMethod =
/** 카드 */
PlatformPaymentMethodCard
/** 간편 결제 */
| PlatformPaymentMethodEasyPay
/** 상품권 */
| PlatformPaymentMethodGiftCertificate
/** 모바일 */
| PlatformPaymentMethodMobile
/** 계좌이체 */
| PlatformPaymentMethodTransfer
/** 가상계좌 */
| PlatformPaymentMethodVirtualAccount | {
readonly type: Unrecognized;
};
export declare function isUnrecognizedPlatformPaymentMethod(entity: PlatformPaymentMethod): entity is {
readonly type: Unrecognized;
};