import type { EasyPayMethodType } from "./../../platform/transfer/EasyPayMethodType.js"; import type { EasyPayProvider } from "./../../common/EasyPayProvider.js"; /** 간편 결제 입력 정보 */ export type PlatformPaymentMethodEasyPayInput = { /** 간편 결제사 */ provider?: EasyPayProvider; /** 간편 결제 수단 */ methodType?: EasyPayMethodType; };