@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 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 { AIPlatformConnector } from './AIPlatformConnector';
/**
*
* @export
* @interface GetAIPlatformConnectors200Response
*/
export interface GetAIPlatformConnectors200Response {
/**
*
* @type {Array<AIPlatformConnector>}
* @memberof GetAIPlatformConnectors200Response
*/
aiPlatformConnectors: Array<AIPlatformConnector>;
}
/**
* 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;