@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
48 lines (47 loc) • 1.5 kB
TypeScript
/**
* Vectorize API (Beta)
* API for Vectorize services
*
* The version of the OpenAPI document: 0.0.1
*
*
* 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 { AIPlatformType } from './AIPlatformType';
/**
*
* @export
* @interface CreateAIPlatformConnector
*/
export interface CreateAIPlatformConnector {
/**
*
* @type {string}
* @memberof CreateAIPlatformConnector
*/
name: string;
/**
*
* @type {AIPlatformType}
* @memberof CreateAIPlatformConnector
*/
type: AIPlatformType;
/**
*
* @type {{ [key: string]: any | null; }}
* @memberof CreateAIPlatformConnector
*/
config?: {
[key: string]: any | null;
};
}
/**
* Check if a given object implements the CreateAIPlatformConnector interface.
*/
export declare function instanceOfCreateAIPlatformConnector(value: object): value is CreateAIPlatformConnector;
export declare function CreateAIPlatformConnectorFromJSON(json: any): CreateAIPlatformConnector;
export declare function CreateAIPlatformConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAIPlatformConnector;
export declare function CreateAIPlatformConnectorToJSON(json: any): CreateAIPlatformConnector;
export declare function CreateAIPlatformConnectorToJSONTyped(value?: CreateAIPlatformConnector | null, ignoreDiscriminator?: boolean): any;