import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PortalRedirect = { /** * Redirect URL containing a JWT to authenticate the user with the portal. */ redirectUrl?: string | undefined; /** * The ID of the tenant associated with this portal session. */ tenantId?: string | undefined; }; /** @internal */ export declare const PortalRedirect$inboundSchema: z.ZodType; /** @internal */ export type PortalRedirect$Outbound = { redirect_url?: string | undefined; tenant_id?: string | undefined; }; /** @internal */ export declare const PortalRedirect$outboundSchema: z.ZodType; export declare function portalRedirectToJSON(portalRedirect: PortalRedirect): string; export declare function portalRedirectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=portalredirect.d.ts.map