import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreatePazeMobileSessionGlobals = { merchantAccountId?: string | undefined; }; export type CreatePazeMobileSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; pazeMobileSessionCreateRequest: components.PazeMobileSessionCreateRequest; }; /** @internal */ export type CreatePazeMobileSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; PazeMobileSessionCreateRequest: components.PazeMobileSessionCreateRequest$Outbound; }; /** @internal */ export declare const CreatePazeMobileSessionRequest$outboundSchema: z.ZodType; export declare function createPazeMobileSessionRequestToJSON(createPazeMobileSessionRequest: CreatePazeMobileSessionRequest): string; //# sourceMappingURL=createpazemobilesession.d.ts.map