@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
39 lines (38 loc) • 1.24 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.
*/
/**
* Authentication configuration for Qdrant
* @export
* @interface QDRANTAuthConfig
*/
export interface QDRANTAuthConfig {
/**
* Host. Example: Enter your host
* @type {string}
* @memberof QDRANTAuthConfig
*/
host: string;
/**
* API Key. Example: Enter your API key
* @type {string}
* @memberof QDRANTAuthConfig
*/
apiKey: string;
}
/**
* Check if a given object implements the QDRANTAuthConfig interface.
*/
export declare function instanceOfQDRANTAuthConfig(value: object): value is QDRANTAuthConfig;
export declare function QDRANTAuthConfigFromJSON(json: any): QDRANTAuthConfig;
export declare function QDRANTAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): QDRANTAuthConfig;
export declare function QDRANTAuthConfigToJSON(json: any): QDRANTAuthConfig;
export declare function QDRANTAuthConfigToJSONTyped(value?: QDRANTAuthConfig | null, ignoreDiscriminator?: boolean): any;