/** 결제 건 정렬 기준 */
export type PaymentSortBy = 
/** 결제 요청 시점 */
"REQUESTED_AT"
/** 상태 변경 시점 */
 | "STATUS_CHANGED_AT" | string & {};
