/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type GetWalletsByCustomerIdRequest = { /** * Customer ID */ id: string; }; /** @internal */ export type GetWalletsByCustomerIdRequest$Outbound = { id: string; }; /** @internal */ export const GetWalletsByCustomerIdRequest$outboundSchema: z.ZodMiniType< GetWalletsByCustomerIdRequest$Outbound, GetWalletsByCustomerIdRequest > = z.object({ id: z.string(), }); export function getWalletsByCustomerIdRequestToJSON( getWalletsByCustomerIdRequest: GetWalletsByCustomerIdRequest, ): string { return JSON.stringify( GetWalletsByCustomerIdRequest$outboundSchema.parse( getWalletsByCustomerIdRequest, ), ); }