@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
39 lines (38 loc) • 1.28 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.
*/
/**
*
* @export
* @interface CreatedAIPlatformConnector
*/
export interface CreatedAIPlatformConnector {
/**
*
* @type {string}
* @memberof CreatedAIPlatformConnector
*/
name: string;
/**
*
* @type {string}
* @memberof CreatedAIPlatformConnector
*/
id: string;
}
/**
* Check if a given object implements the CreatedAIPlatformConnector interface.
*/
export declare function instanceOfCreatedAIPlatformConnector(value: object): value is CreatedAIPlatformConnector;
export declare function CreatedAIPlatformConnectorFromJSON(json: any): CreatedAIPlatformConnector;
export declare function CreatedAIPlatformConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatedAIPlatformConnector;
export declare function CreatedAIPlatformConnectorToJSON(json: any): CreatedAIPlatformConnector;
export declare function CreatedAIPlatformConnectorToJSONTyped(value?: CreatedAIPlatformConnector | null, ignoreDiscriminator?: boolean): any;