import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetWorkspaceRequest = { sessionId: string; sessionToken?: string | null | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetWorkspaceRequest$inboundSchema: z.ZodType; /** @internal */ export type GetWorkspaceRequest$Outbound = { session_id: string; session_token?: string | null | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetWorkspaceRequest$outboundSchema: z.ZodType; export declare function getWorkspaceRequestToJSON(getWorkspaceRequest: GetWorkspaceRequest): string; export declare function getWorkspaceRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getworkspace.d.ts.map