/** * 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 { PipelineRun } from './'; /** * * @export * @interface RespPipelineRun */ export interface RespPipelineRun { /** * * @type {string} * @memberof RespPipelineRun */ status: string; /** * * @type {string} * @memberof RespPipelineRun */ message: string; /** * * @type {PipelineRun} * @memberof RespPipelineRun */ result: PipelineRun; /** * * @type {string} * @memberof RespPipelineRun */ version: string; /** * * @type {object} * @memberof RespPipelineRun */ metadata: object; } export declare function RespPipelineRunFromJSON(json: any): RespPipelineRun; export declare function RespPipelineRunFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespPipelineRun; export declare function RespPipelineRunToJSON(value?: RespPipelineRun | null): any;