@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.37 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 { VERTEXAuthConfig } from './VERTEXAuthConfig';
/**
*
* @export
* @interface Vertex
*/
export interface Vertex {
/**
* Name of the connector
* @type {string}
* @memberof Vertex
*/
name: string;
/**
* Must be "VERTEX"
* @type {string}
* @memberof Vertex
*/
type: VertexTypeEnum;
/**
*
* @type {VERTEXAuthConfig}
* @memberof Vertex
*/
config: VERTEXAuthConfig;
}
/**
* @export
*/
export declare const VertexTypeEnum: {
readonly Vertex: "VERTEX";
};
export type VertexTypeEnum = typeof VertexTypeEnum[keyof typeof VertexTypeEnum];
/**
* Check if a given object implements the Vertex interface.
*/
export declare function instanceOfVertex(value: object): value is Vertex;
export declare function VertexFromJSON(json: any): Vertex;
export declare function VertexFromJSONTyped(json: any, ignoreDiscriminator: boolean): Vertex;
export declare function VertexToJSON(json: any): Vertex;
export declare function VertexToJSONTyped(value?: Vertex | null, ignoreDiscriminator?: boolean): any;