/** * 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 TapisActorTaskAllOf */ export interface TapisActorTaskAllOf { /** * * @type {boolean} * @memberof TapisActorTaskAllOf */ poll?: boolean; /** * * @type {string} * @memberof TapisActorTaskAllOf */ tapis_actor_id?: string; /** * * @type {string} * @memberof TapisActorTaskAllOf */ tapis_actor_message?: string | null; } export declare function TapisActorTaskAllOfFromJSON(json: any): TapisActorTaskAllOf; export declare function TapisActorTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapisActorTaskAllOf; export declare function TapisActorTaskAllOfToJSON(value?: TapisActorTaskAllOf | null): any;