import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PazeWebSession = { /** * The Paze merchant data ID. */ id: string; /** * The merchant display name. */ name: string; /** * The Paze profile ID for the given domain. */ profileId: string; }; /** @internal */ export declare const PazeWebSession$inboundSchema: z.ZodType; export declare function pazeWebSessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazewebsession.d.ts.map