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