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