/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Pipeline } from './'; /** * * @export * @interface RespPipeline */ export interface RespPipeline { /** * * @type {string} * @memberof RespPipeline */ status: string; /** * * @type {string} * @memberof RespPipeline */ message: string; /** * * @type {Pipeline} * @memberof RespPipeline */ result: Pipeline; /** * * @type {string} * @memberof RespPipeline */ version: string; /** * * @type {object} * @memberof RespPipeline */ metadata: object; } export declare function RespPipelineFromJSON(json: any): RespPipeline; export declare function RespPipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespPipeline; export declare function RespPipelineToJSON(value?: RespPipeline | null): any;