UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 988 B
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { QDRANTAuthConfig } from './QDRANTAuthConfig'; /** * * @export * @interface Qdrant1 */ export interface Qdrant1 { /** * * @type {QDRANTAuthConfig} * @memberof Qdrant1 */ config?: QDRANTAuthConfig; } /** * Check if a given object implements the Qdrant1 interface. */ export declare function instanceOfQdrant1(value: object): value is Qdrant1; export declare function Qdrant1FromJSON(json: any): Qdrant1; export declare function Qdrant1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Qdrant1; export declare function Qdrant1ToJSON(json: any): Qdrant1; export declare function Qdrant1ToJSONTyped(value?: Qdrant1 | null, ignoreDiscriminator?: boolean): any;