import * as z from "zod/v3"; import * as components from "../components/index.js"; export type ReviewPazeMobileSessionGlobals = { merchantAccountId?: string | undefined; }; export type ReviewPazeMobileSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; pazeSessionReviewRequest: components.PazeSessionReviewRequest; }; /** @internal */ export type ReviewPazeMobileSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; PazeSessionReviewRequest: components.PazeSessionReviewRequest$Outbound; }; /** @internal */ export declare const ReviewPazeMobileSessionRequest$outboundSchema: z.ZodType; export declare function reviewPazeMobileSessionRequestToJSON(reviewPazeMobileSessionRequest: ReviewPazeMobileSessionRequest): string; //# sourceMappingURL=reviewpazemobilesession.d.ts.map