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