@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.07 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 Elasticsearch connector
* @export
* @interface ELASTICConfig
*/
export interface ELASTICConfig {
/**
* Index Name. Example: Enter index name
* @type {string}
* @memberof ELASTICConfig
*/
index: string;
}
/**
* Check if a given object implements the ELASTICConfig interface.
*/
export declare function instanceOfELASTICConfig(value: object): value is ELASTICConfig;
export declare function ELASTICConfigFromJSON(json: any): ELASTICConfig;
export declare function ELASTICConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ELASTICConfig;
export declare function ELASTICConfigToJSON(json: any): ELASTICConfig;
export declare function ELASTICConfigToJSONTyped(value?: ELASTICConfig | null, ignoreDiscriminator?: boolean): any;