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