import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ListResourcePaymentMethod } from "../components/listresourcepaymentmethod.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomersListPaymentMethodsRequest = { /** * The customer ID. */ id: string; /** * Page number, defaults to 1. */ page?: number | undefined; /** * Size of a page, defaults to 10. Maximum is 100. */ limit?: number | undefined; }; export type CustomersListPaymentMethodsResponse = { result: ListResourcePaymentMethod; }; /** @internal */ export type CustomersListPaymentMethodsRequest$Outbound = { id: string; page: number; limit: number; }; /** @internal */ export declare const CustomersListPaymentMethodsRequest$outboundSchema: z.ZodMiniType; export declare function customersListPaymentMethodsRequestToJSON(customersListPaymentMethodsRequest: CustomersListPaymentMethodsRequest): string; /** @internal */ export declare const CustomersListPaymentMethodsResponse$inboundSchema: z.ZodMiniType; export declare function customersListPaymentMethodsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerslistpaymentmethods.d.ts.map