/** * 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. */ /** * * @export * @interface ReqPatchTaskExecution */ export interface ReqPatchTaskExecution { /** * * @type {string} * @memberof ReqPatchTaskExecution */ last_message?: string; /** * * @type {string} * @memberof ReqPatchTaskExecution */ stdout?: string; /** * * @type {string} * @memberof ReqPatchTaskExecution */ stderr?: string; } export declare function ReqPatchTaskExecutionFromJSON(json: any): ReqPatchTaskExecution; export declare function ReqPatchTaskExecutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqPatchTaskExecution; export declare function ReqPatchTaskExecutionToJSON(value?: ReqPatchTaskExecution | null): any;