@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.09 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.
*/
/**
* Configuration for Weaviate connector
* @export
* @interface WEAVIATEConfig
*/
export interface WEAVIATEConfig {
/**
* Collection Name. Example: Enter collection name
* @type {string}
* @memberof WEAVIATEConfig
*/
collection: string;
}
/**
* Check if a given object implements the WEAVIATEConfig interface.
*/
export declare function instanceOfWEAVIATEConfig(value: object): value is WEAVIATEConfig;
export declare function WEAVIATEConfigFromJSON(json: any): WEAVIATEConfig;
export declare function WEAVIATEConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): WEAVIATEConfig;
export declare function WEAVIATEConfigToJSON(json: any): WEAVIATEConfig;
export declare function WEAVIATEConfigToJSONTyped(value?: WEAVIATEConfig | null, ignoreDiscriminator?: boolean): any;