import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CustomerWalletSortProperty } from "../components/customerwalletsortproperty.js"; import { ListResourceCustomerWallet } from "../components/listresourcecustomerwallet.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerPortalWalletsListSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalWalletsListRequest = { /** * Page number, defaults to 1. */ page?: number | undefined; /** * Size of a page, defaults to 10. Maximum is 100. */ limit?: number | undefined; /** * Sorting criterion. Several criteria can be used simultaneously and will be applied in order. Add a minus sign `-` before the criteria name to sort by descending order. */ sorting?: Array | null | undefined; }; export type CustomerPortalWalletsListResponse = { result: ListResourceCustomerWallet; }; /** @internal */ export type CustomerPortalWalletsListSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalWalletsListSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalWalletsListSecurityToJSON(customerPortalWalletsListSecurity: CustomerPortalWalletsListSecurity): string; /** @internal */ export type CustomerPortalWalletsListRequest$Outbound = { page: number; limit: number; sorting?: Array | null | undefined; }; /** @internal */ export declare const CustomerPortalWalletsListRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalWalletsListRequestToJSON(customerPortalWalletsListRequest: CustomerPortalWalletsListRequest): string; /** @internal */ export declare const CustomerPortalWalletsListResponse$inboundSchema: z.ZodMiniType; export declare function customerPortalWalletsListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerportalwalletslist.d.ts.map