UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

10 lines (9 loc) 355 B
import type { PageInfo } from "./../../common/PageInfo.js"; import type { PlatformContract } from "./../../platform/PlatformContract.js"; /** 계약 다건 조회 성공 응답 */ export type GetPlatformContractsResponse = { /** 조회된 계약 리스트 */ items: PlatformContract[]; /** 조회된 페이지 정보 */ page: PageInfo; };