/** 빌링키 결제 완료된 결제 건 요약 정보 */
export type BillingKeyPaymentSummary = {
    /** PG사 결제 아이디 */
    pgTxId: string;
    /**
     * 결제 완료 시점
     * (RFC 3339 date-time)
     */
    paidAt: string;
};
