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