import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RetrieveFineTuningJobRequest = { fineTuningJobId: string; }; /** @internal */ export declare const RetrieveFineTuningJobRequest$inboundSchema: z.ZodType; /** @internal */ export type RetrieveFineTuningJobRequest$Outbound = { fine_tuning_job_id: string; }; /** @internal */ export declare const RetrieveFineTuningJobRequest$outboundSchema: z.ZodType; export declare function retrieveFineTuningJobRequestToJSON(retrieveFineTuningJobRequest: RetrieveFineTuningJobRequest): string; export declare function retrieveFineTuningJobRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrievefinetuningjob.d.ts.map