@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.27 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 DeleteAIPlatformConnectorResponse
*/
export interface DeleteAIPlatformConnectorResponse {
/**
*
* @type {string}
* @memberof DeleteAIPlatformConnectorResponse
*/
message: string;
}
/**
* Check if a given object implements the DeleteAIPlatformConnectorResponse interface.
*/
export declare function instanceOfDeleteAIPlatformConnectorResponse(value: object): value is DeleteAIPlatformConnectorResponse;
export declare function DeleteAIPlatformConnectorResponseFromJSON(json: any): DeleteAIPlatformConnectorResponse;
export declare function DeleteAIPlatformConnectorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteAIPlatformConnectorResponse;
export declare function DeleteAIPlatformConnectorResponseToJSON(json: any): DeleteAIPlatformConnectorResponse;
export declare function DeleteAIPlatformConnectorResponseToJSONTyped(value?: DeleteAIPlatformConnectorResponse | null, ignoreDiscriminator?: boolean): any;