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