/** * 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 TapisJobTaskAllOf */ export interface TapisJobTaskAllOf { /** * * @type {boolean} * @memberof TapisJobTaskAllOf */ poll?: boolean; /** * * @type {object} * @memberof TapisJobTaskAllOf */ tapis_job_def?: object; } export declare function TapisJobTaskAllOfFromJSON(json: any): TapisJobTaskAllOf; export declare function TapisJobTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapisJobTaskAllOf; export declare function TapisJobTaskAllOfToJSON(value?: TapisJobTaskAllOf | null): any;