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