@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
22 lines (21 loc) • 1.28 kB
TypeScript
import type { PlatformPaymentMethodCardInput } from "./../../platform/transfer/PlatformPaymentMethodCardInput.js";
import type { PlatformPaymentMethodEasyPayInput } from "./../../platform/transfer/PlatformPaymentMethodEasyPayInput.js";
import type { PlatformPaymentMethodGiftCertificateInput } from "./../../platform/transfer/PlatformPaymentMethodGiftCertificateInput.js";
import type { PlatformPaymentMethodMobileInput } from "./../../platform/transfer/PlatformPaymentMethodMobileInput.js";
import type { PlatformPaymentMethodTransferInput } from "./../../platform/transfer/PlatformPaymentMethodTransferInput.js";
import type { PlatformPaymentMethodVirtualAccountInput } from "./../../platform/transfer/PlatformPaymentMethodVirtualAccountInput.js";
/** 결제 수단 입력 정보 */
export type PlatformPaymentMethodInput = {
/** 카드 */
card?: PlatformPaymentMethodCardInput;
/** 계좌이체 */
transfer?: PlatformPaymentMethodTransferInput;
/** 가상계좌 */
virtualAccount?: PlatformPaymentMethodVirtualAccountInput;
/** 상품권 */
giftCertificate?: PlatformPaymentMethodGiftCertificateInput;
/** 모바일 */
mobile?: PlatformPaymentMethodMobileInput;
/** 간편 결제 */
easyPay?: PlatformPaymentMethodEasyPayInput;
};