@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.38 kB
TypeScript
/**
* 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 Qdrant
*/
export interface Qdrant {
/**
* Name of the connector
* @type {string}
* @memberof Qdrant
*/
name: string;
/**
* Connector type (must be "QDRANT")
* @type {string}
* @memberof Qdrant
*/
type: QdrantTypeEnum;
/**
*
* @type {QDRANTAuthConfig}
* @memberof Qdrant
*/
config: QDRANTAuthConfig;
}
/**
* @export
*/
export declare const QdrantTypeEnum: {
readonly Qdrant: "QDRANT";
};
export type QdrantTypeEnum = typeof QdrantTypeEnum[keyof typeof QdrantTypeEnum];
/**
* Check if a given object implements the Qdrant interface.
*/
export declare function instanceOfQdrant(value: object): value is Qdrant;
export declare function QdrantFromJSON(json: any): Qdrant;
export declare function QdrantFromJSONTyped(json: any, ignoreDiscriminator: boolean): Qdrant;
export declare function QdrantToJSON(json: any): Qdrant;
export declare function QdrantToJSONTyped(value?: Qdrant | null, ignoreDiscriminator?: boolean): any;