/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type ListDigitalWalletsGlobals = { merchantAccountId?: string | undefined; }; export type ListDigitalWalletsRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type ListDigitalWalletsRequest$Outbound = { merchantAccountId?: string | null | undefined; }; /** @internal */ export const ListDigitalWalletsRequest$outboundSchema: z.ZodType< ListDigitalWalletsRequest$Outbound, z.ZodTypeDef, ListDigitalWalletsRequest > = z.object({ merchantAccountId: z.nullable(z.string()).optional(), }); export function listDigitalWalletsRequestToJSON( listDigitalWalletsRequest: ListDigitalWalletsRequest, ): string { return JSON.stringify( ListDigitalWalletsRequest$outboundSchema.parse(listDigitalWalletsRequest), ); }