@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.12 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 SingleStore connector
* @export
* @interface SINGLESTOREConfig
*/
export interface SINGLESTOREConfig {
/**
* Table Name. Example: Enter table name
* @type {string}
* @memberof SINGLESTOREConfig
*/
table: string;
}
/**
* Check if a given object implements the SINGLESTOREConfig interface.
*/
export declare function instanceOfSINGLESTOREConfig(value: object): value is SINGLESTOREConfig;
export declare function SINGLESTOREConfigFromJSON(json: any): SINGLESTOREConfig;
export declare function SINGLESTOREConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SINGLESTOREConfig;
export declare function SINGLESTOREConfigToJSON(json: any): SINGLESTOREConfig;
export declare function SINGLESTOREConfigToJSONTyped(value?: SINGLESTOREConfig | null, ignoreDiscriminator?: boolean): any;