import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ListResourceCustomerPaymentMethod } from "../components/listresourcecustomerpaymentmethod.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerPortalCustomersListPaymentMethodsSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalCustomersListPaymentMethodsRequest = { /** * Page number, defaults to 1. */ page?: number | undefined; /** * Size of a page, defaults to 10. Maximum is 100. */ limit?: number | undefined; }; export type CustomerPortalCustomersListPaymentMethodsResponse = { result: ListResourceCustomerPaymentMethod; }; /** @internal */ export type CustomerPortalCustomersListPaymentMethodsSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalCustomersListPaymentMethodsSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalCustomersListPaymentMethodsSecurityToJSON(customerPortalCustomersListPaymentMethodsSecurity: CustomerPortalCustomersListPaymentMethodsSecurity): string; /** @internal */ export type CustomerPortalCustomersListPaymentMethodsRequest$Outbound = { page: number; limit: number; }; /** @internal */ export declare const CustomerPortalCustomersListPaymentMethodsRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalCustomersListPaymentMethodsRequestToJSON(customerPortalCustomersListPaymentMethodsRequest: CustomerPortalCustomersListPaymentMethodsRequest): string; /** @internal */ export declare const CustomerPortalCustomersListPaymentMethodsResponse$inboundSchema: z.ZodMiniType; export declare function customerPortalCustomersListPaymentMethodsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerportalcustomerslistpaymentmethods.d.ts.map