import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetVectorStoreFileBatchRequest = { vectorStoreId: string; batchId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetVectorStoreFileBatchRequest$inboundSchema: z.ZodType; /** @internal */ export type GetVectorStoreFileBatchRequest$Outbound = { vector_store_id: string; batch_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetVectorStoreFileBatchRequest$outboundSchema: z.ZodType; export declare function getVectorStoreFileBatchRequestToJSON(getVectorStoreFileBatchRequest: GetVectorStoreFileBatchRequest): string; export declare function getVectorStoreFileBatchRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getvectorstorefilebatch.d.ts.map