import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BatchEndpoint } from "./batchendpoint.js"; export type CreateBatchRequest = { inputFileId: string; endpoint: BatchEndpoint; completionWindow: "24h"; metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const CreateBatchRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateBatchRequest$Outbound = { input_file_id: string; endpoint: string; completion_window: "24h"; metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const CreateBatchRequest$outboundSchema: z.ZodType; export declare function createBatchRequestToJSON(createBatchRequest: CreateBatchRequest): string; export declare function createBatchRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createbatchrequest.d.ts.map