UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

12 lines (11 loc) 349 B
import type { BillingKeyPaymentInput } from "./../../common/BillingKeyPaymentInput.js"; /** 결제 예약 요청 입력 정보 */ export type CreatePaymentScheduleBody = { /** 빌링키 결제 입력 정보 */ payment: BillingKeyPaymentInput; /** * 결제 예정 시점 * (RFC 3339 date-time) */ timeToPay: string; };