import type { BillingKeyFilterInput } from "./../../payment/billingKey/BillingKeyFilterInput.js"; import type { BillingKeySortInput } from "./../../payment/billingKey/BillingKeySortInput.js"; import type { PageInput } from "./../../common/PageInput.js"; /** 빌링키 다건 조회를 위한 입력 정보 */ export type GetBillingKeyInfosBody = { /** * 요청할 페이지 정보 * * 미 입력 시 number: 0, size: 10 으로 기본값이 적용됩니다. */ page?: PageInput; /** * 정렬 조건 * * 미 입력 시 sortBy: TIME_TO_PAY, sortOrder: DESC 으로 기본값이 적용됩니다. */ sort?: BillingKeySortInput; /** * 조회할 빌링키 조건 필터 * * V1 빌링키 건의 경우 일부 필드에 대해 필터가 적용되지 않을 수 있습니다. */ filter?: BillingKeyFilterInput; };