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 GetJobRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type GetJobResponse = components.ComputeJob | components.ComputeErrorEnvelope; /** @internal */ export declare const GetJobRequest$inboundSchema: z.ZodType; /** @internal */ export type GetJobRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetJobRequest$outboundSchema: z.ZodType; export declare function getJobRequestToJSON(getJobRequest: GetJobRequest): string; export declare function getJobRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetJobResponse$inboundSchema: z.ZodType; /** @internal */ export type GetJobResponse$Outbound = components.ComputeJob$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const GetJobResponse$outboundSchema: z.ZodType; export declare function getJobResponseToJSON(getJobResponse: GetJobResponse): string; export declare function getJobResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getjob.d.ts.map