@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
40 lines (39 loc) • 1.51 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 { CreatedAIPlatformConnector } from './CreatedAIPlatformConnector';
/**
*
* @export
* @interface CreateAIPlatformConnectorResponse
*/
export interface CreateAIPlatformConnectorResponse {
/**
*
* @type {string}
* @memberof CreateAIPlatformConnectorResponse
*/
message: string;
/**
*
* @type {CreatedAIPlatformConnector}
* @memberof CreateAIPlatformConnectorResponse
*/
connector: CreatedAIPlatformConnector;
}
/**
* Check if a given object implements the CreateAIPlatformConnectorResponse interface.
*/
export declare function instanceOfCreateAIPlatformConnectorResponse(value: object): value is CreateAIPlatformConnectorResponse;
export declare function CreateAIPlatformConnectorResponseFromJSON(json: any): CreateAIPlatformConnectorResponse;
export declare function CreateAIPlatformConnectorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAIPlatformConnectorResponse;
export declare function CreateAIPlatformConnectorResponseToJSON(json: any): CreateAIPlatformConnectorResponse;
export declare function CreateAIPlatformConnectorResponseToJSONTyped(value?: CreateAIPlatformConnectorResponse | null, ignoreDiscriminator?: boolean): any;