import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PazeMobileSessionCreate = { /** * Session URL for launching the Paze checkout UI from the native mobile app. */ pazeCheckoutUrl: string; /** * Merchant-defined transaction identifier echoed from the request. */ clientContext: string; /** * Globally unique session identifier generated by Paze. */ ewSID: string; /** * Timestamp when the response was sent by Paze, in ISO 8601 format. */ timestampIso8601: string; }; /** @internal */ export declare const PazeMobileSessionCreate$inboundSchema: z.ZodType; export declare function pazeMobileSessionCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazemobilesessioncreate.d.ts.map