@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.37 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 { AIPlatform } from './AIPlatform';
/**
*
* @export
* @interface GetAIPlatformConnectors200Response
*/
export interface GetAIPlatformConnectors200Response {
/**
*
* @type {Array<AIPlatform>}
* @memberof GetAIPlatformConnectors200Response
*/
aiPlatformConnectors: Array<AIPlatform>;
}
/**
* Check if a given object implements the GetAIPlatformConnectors200Response interface.
*/
export declare function instanceOfGetAIPlatformConnectors200Response(value: object): value is GetAIPlatformConnectors200Response;
export declare function GetAIPlatformConnectors200ResponseFromJSON(json: any): GetAIPlatformConnectors200Response;
export declare function GetAIPlatformConnectors200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAIPlatformConnectors200Response;
export declare function GetAIPlatformConnectors200ResponseToJSON(json: any): GetAIPlatformConnectors200Response;
export declare function GetAIPlatformConnectors200ResponseToJSONTyped(value?: GetAIPlatformConnectors200Response | null, ignoreDiscriminator?: boolean): any;