export interface ListRefundsRequest { /** * The ID of the refund created after the last refund you want to retrieve. String starting with **refund_**. */ ending_before?: `refund_${string}`; /** * The maximum number of refunds to return. Range: 1-100. Default is 10. */ limit?: string; /** * The ID of the refund created before the first refund you want to retrieve. String starting with **refund_**. */ starting_after?: `refund_${string}`; } //# sourceMappingURL=ListRefundsRequest.d.ts.map