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