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 RunCodeRequest = { sessionId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; codeRequest: components.CodeRequest; }; /** @internal */ export declare const RunCodeRequest$inboundSchema: z.ZodType; /** @internal */ export type RunCodeRequest$Outbound = { session_id: string; "X-On-Behalf-Of"?: string | undefined; CodeRequest: components.CodeRequest$Outbound; }; /** @internal */ export declare const RunCodeRequest$outboundSchema: z.ZodType; export declare function runCodeRequestToJSON(runCodeRequest: RunCodeRequest): string; export declare function runCodeRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=runcode.d.ts.map