import type { BillingKeyPaymentMethodEasyPayMethod } from "./../../payment/billingKey/BillingKeyPaymentMethodEasyPayMethod.js"; import type { EasyPayProvider } from "./../../common/EasyPayProvider.js"; /** 간편 결제 정보 */ export type BillingKeyPaymentMethodEasyPay = { type: "BillingKeyPaymentMethodEasyPay"; /** 간편 결제 PG사 */ provider?: EasyPayProvider; /** 간편 결제 수단 */ method?: BillingKeyPaymentMethodEasyPayMethod; };