@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
47 lines (46 loc) • 1.72 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 { AIPlatformTypeForPipeline } from './AIPlatformTypeForPipeline';
import type { AIPlatformConfigSchema } from './AIPlatformConfigSchema';
/**
*
* @export
* @interface PipelineAIPlatformConnectorSchema
*/
export interface PipelineAIPlatformConnectorSchema {
/**
*
* @type {string}
* @memberof PipelineAIPlatformConnectorSchema
*/
id: string;
/**
*
* @type {AIPlatformTypeForPipeline}
* @memberof PipelineAIPlatformConnectorSchema
*/
type: AIPlatformTypeForPipeline;
/**
*
* @type {AIPlatformConfigSchema}
* @memberof PipelineAIPlatformConnectorSchema
*/
config: AIPlatformConfigSchema;
}
/**
* Check if a given object implements the PipelineAIPlatformConnectorSchema interface.
*/
export declare function instanceOfPipelineAIPlatformConnectorSchema(value: object): value is PipelineAIPlatformConnectorSchema;
export declare function PipelineAIPlatformConnectorSchemaFromJSON(json: any): PipelineAIPlatformConnectorSchema;
export declare function PipelineAIPlatformConnectorSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PipelineAIPlatformConnectorSchema;
export declare function PipelineAIPlatformConnectorSchemaToJSON(json: any): PipelineAIPlatformConnectorSchema;
export declare function PipelineAIPlatformConnectorSchemaToJSONTyped(value?: PipelineAIPlatformConnectorSchema | null, ignoreDiscriminator?: boolean): any;