@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.02 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 { DATASTAXAuthConfig } from './DATASTAXAuthConfig';
/**
*
* @export
* @interface Datastax1
*/
export interface Datastax1 {
/**
*
* @type {DATASTAXAuthConfig}
* @memberof Datastax1
*/
config?: DATASTAXAuthConfig;
}
/**
* Check if a given object implements the Datastax1 interface.
*/
export declare function instanceOfDatastax1(value: object): value is Datastax1;
export declare function Datastax1FromJSON(json: any): Datastax1;
export declare function Datastax1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Datastax1;
export declare function Datastax1ToJSON(json: any): Datastax1;
export declare function Datastax1ToJSONTyped(value?: Datastax1 | null, ignoreDiscriminator?: boolean): any;