import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Job, Job$Outbound } from "./job.js"; /** * Jobs */ export type GetJobResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: Job; }; /** @internal */ export declare const GetJobResponse$inboundSchema: z.ZodType; /** @internal */ export type GetJobResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Job$Outbound; }; /** @internal */ export declare const GetJobResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetJobResponse$ { /** @deprecated use `GetJobResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetJobResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetJobResponse$Outbound` instead. */ type Outbound = GetJobResponse$Outbound; } export declare function getJobResponseToJSON(getJobResponse: GetJobResponse): string; export declare function getJobResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getjobresponse.d.ts.map