@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
40 lines (39 loc) • 1.52 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 { UpdatedAIPlatformConnectorData } from './UpdatedAIPlatformConnectorData';
/**
*
* @export
* @interface UpdateAIPlatformConnectorResponse
*/
export interface UpdateAIPlatformConnectorResponse {
/**
*
* @type {string}
* @memberof UpdateAIPlatformConnectorResponse
*/
message: string;
/**
*
* @type {UpdatedAIPlatformConnectorData}
* @memberof UpdateAIPlatformConnectorResponse
*/
data: UpdatedAIPlatformConnectorData;
}
/**
* Check if a given object implements the UpdateAIPlatformConnectorResponse interface.
*/
export declare function instanceOfUpdateAIPlatformConnectorResponse(value: object): value is UpdateAIPlatformConnectorResponse;
export declare function UpdateAIPlatformConnectorResponseFromJSON(json: any): UpdateAIPlatformConnectorResponse;
export declare function UpdateAIPlatformConnectorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAIPlatformConnectorResponse;
export declare function UpdateAIPlatformConnectorResponseToJSON(json: any): UpdateAIPlatformConnectorResponse;
export declare function UpdateAIPlatformConnectorResponseToJSONTyped(value?: UpdateAIPlatformConnectorResponse | null, ignoreDiscriminator?: boolean): any;