@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.41 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 { CAPELLAAuthConfig } from './CAPELLAAuthConfig';
/**
*
* @export
* @interface Capella
*/
export interface Capella {
/**
* Name of the connector
* @type {string}
* @memberof Capella
*/
name: string;
/**
* Connector type (must be "CAPELLA")
* @type {string}
* @memberof Capella
*/
type: CapellaTypeEnum;
/**
*
* @type {CAPELLAAuthConfig}
* @memberof Capella
*/
config: CAPELLAAuthConfig;
}
/**
* @export
*/
export declare const CapellaTypeEnum: {
readonly Capella: "CAPELLA";
};
export type CapellaTypeEnum = typeof CapellaTypeEnum[keyof typeof CapellaTypeEnum];
/**
* Check if a given object implements the Capella interface.
*/
export declare function instanceOfCapella(value: object): value is Capella;
export declare function CapellaFromJSON(json: any): Capella;
export declare function CapellaFromJSONTyped(json: any, ignoreDiscriminator: boolean): Capella;
export declare function CapellaToJSON(json: any): Capella;
export declare function CapellaToJSONTyped(value?: Capella | null, ignoreDiscriminator?: boolean): any;