@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.09 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 StopPipelineResponse
*/
export interface StopPipelineResponse {
/**
*
* @type {string}
* @memberof StopPipelineResponse
*/
message: string;
}
/**
* Check if a given object implements the StopPipelineResponse interface.
*/
export declare function instanceOfStopPipelineResponse(value: object): value is StopPipelineResponse;
export declare function StopPipelineResponseFromJSON(json: any): StopPipelineResponse;
export declare function StopPipelineResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StopPipelineResponse;
export declare function StopPipelineResponseToJSON(json: any): StopPipelineResponse;
export declare function StopPipelineResponseToJSONTyped(value?: StopPipelineResponse | null, ignoreDiscriminator?: boolean): any;