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 CreateVectorStoreFileBatchRequest = { vectorStoreId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createVectorStoreFileBatchRequest: components.CreateVectorStoreFileBatchRequest; }; /** @internal */ export declare const CreateVectorStoreFileBatchRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateVectorStoreFileBatchRequest$Outbound = { vector_store_id: string; "X-On-Behalf-Of"?: string | undefined; CreateVectorStoreFileBatchRequest: components.CreateVectorStoreFileBatchRequest$Outbound; }; /** @internal */ export declare const CreateVectorStoreFileBatchRequest$outboundSchema: z.ZodType; export declare function createVectorStoreFileBatchRequestToJSON(createVectorStoreFileBatchRequest: CreateVectorStoreFileBatchRequest): string; export declare function createVectorStoreFileBatchRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createvectorstorefilebatch.d.ts.map