@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
10 lines (9 loc) • 409 B
TypeScript
import type { PageInput } from "./../../common/PageInput.js";
import type { PlatformContractFilterInput } from "./../../platform/policy/PlatformContractFilterInput.js";
/** 계약 다건 조회를 위한 입력 정보 */
export type GetPlatformContractsBody = {
/** 요청할 페이지 정보 */
page?: PageInput;
/** 조회할 계약 조건 필터 */
filter?: PlatformContractFilterInput;
};