import * as z from "zod/v3"; export type GetDigitalWalletGlobals = { merchantAccountId?: string | undefined; }; export type GetDigitalWalletRequest = { /** * The ID of the digital wallet to read. */ digitalWalletId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetDigitalWalletRequest$Outbound = { digital_wallet_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetDigitalWalletRequest$outboundSchema: z.ZodType; export declare function getDigitalWalletRequestToJSON(getDigitalWalletRequest: GetDigitalWalletRequest): string; //# sourceMappingURL=getdigitalwallet.d.ts.map