import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PazeMobileSession = { /** * The Paze merchant data ID. */ id: string; /** * The merchant display name. */ name: string; /** * The Paze profile ID for the given domain. */ profileId: string; /** * The Paze OAuth access token. Returned only when `source` is `mobile`. */ accessToken: string; /** * The Paze session ID. Returned only when `source` is `mobile`. */ sessionId: string; }; /** @internal */ export declare const PazeMobileSession$inboundSchema: z.ZodType; export declare function pazeMobileSessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazemobilesession.d.ts.map