import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreatePazeDigitalWalletSessionGlobals = { merchantAccountId?: string | undefined; }; export type CreatePazeDigitalWalletSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; pazeSessionRequest: components.PazeSessionRequest; }; /** * Successful Response */ export type CreatePazeDigitalWalletSessionResponseCreatePazeDigitalWalletSession = components.PazeMobileSession | components.PazeWebSession; /** @internal */ export type CreatePazeDigitalWalletSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; PazeSessionRequest: components.PazeSessionRequest$Outbound; }; /** @internal */ export declare const CreatePazeDigitalWalletSessionRequest$outboundSchema: z.ZodType; export declare function createPazeDigitalWalletSessionRequestToJSON(createPazeDigitalWalletSessionRequest: CreatePazeDigitalWalletSessionRequest): string; /** @internal */ export declare const CreatePazeDigitalWalletSessionResponseCreatePazeDigitalWalletSession$inboundSchema: z.ZodType; export declare function createPazeDigitalWalletSessionResponseCreatePazeDigitalWalletSessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createpazedigitalwalletsession.d.ts.map