export interface ListPaymentsRequest { /** * Filters the list for payments related to the specified customer. */ customer?: string; /** * The ID of the payment created after the last payment you want to retrieve. String starting with **payment_**. */ ending_before?: `payment_${string}`; /** * Filters the list for payments related to the specified wallet. */ ewallet?: string; /** * When **true**, includes only group payments in the response. When **false**, excludes group payments from the response. Default is **false**. */ group?: boolean; /** * Filters the list for payments related to the specified invoice. */ invoice?: string; /** * The maximum number of payments to return. Range: 1-100. Default is 10. */ limit?: string; /** * Merchant-defined ID. */ merchant_reference_id?: string; /** * Filters the list for payments related to the specified order. */ order?: string; /** * Filters the list for payments related to the specified payment method. */ payment_method?: string; /** * The ID of the payment created before the first payment you want to retrieve. String starting with **payment_**. */ starting_after?: `payment_${string}`; /** * Filters the list for payments related to the specified subscription. */ subscription?: string; } //# sourceMappingURL=ListPaymentsRequest.d.ts.map