/** * 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 { ApplicationTask, FunctionTask, ImageBuildTask, RequestTask, TapisActorTask, TapisJobTask, TemplateTask, EnumTaskType } from './'; /** * @type Task * * @export */ export declare type Task = { type: EnumTaskType.Application; } & ApplicationTask | { type: EnumTaskType.Function; } & FunctionTask | { type: EnumTaskType.ImageBuild; } & ImageBuildTask | { type: EnumTaskType.Request; } & RequestTask | { type: EnumTaskType.TapisActor; } & TapisActorTask | { type: EnumTaskType.TapisJob; } & TapisJobTask | { type: EnumTaskType.Template; } & TemplateTask; export declare function TaskFromJSON(json: any): Task; export declare function TaskFromJSONTyped(json: any, ignoreDiscriminator: boolean): Task; export declare function TaskToJSON(value?: Task | null): any;