UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

10 lines (9 loc) 391 B
import type { PageInfo } from "./../../common/PageInfo.js"; import type { PaymentSchedule } from "./../../payment/paymentSchedule/PaymentSchedule.js"; /** 결제 예약 다건 조회 성공 응답 정보 */ export type GetPaymentSchedulesResponse = { /** 조회된 결제 예약 건 리스트 */ items: PaymentSchedule[]; /** 조회된 페이지 정보 */ page: PageInfo; };