/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ArgumentType } from './'; /** * * @export * @interface TaskType */ export interface TaskType { /** * * @type {string} * @memberof TaskType */ type: string; /** * * @type {string} * @memberof TaskType */ displayName: string; /** * * @type {string} * @memberof TaskType */ displayGroup: string; /** * * @type {string} * @memberof TaskType */ inputType: string | null; /** * * @type {boolean} * @memberof TaskType */ abortable: boolean; /** * * @type {{ [key: string]: string | undefined; }} * @memberof TaskType */ argTemplate: { [key: string]: string | undefined; } | null; /** * * @type {{ [key: string]: ArgumentType | undefined; }} * @memberof TaskType */ readonly argTypes: { [key: string]: ArgumentType | undefined; }; /** * * @type {Array} * @memberof TaskType */ requiredArgs: Array; /** * * @type {{ [key: string]: string | undefined; }} * @memberof TaskType */ outputNames: { [key: string]: string | undefined; }; /** * * @type {{ [key: string]: ArgumentType | undefined; }} * @memberof TaskType */ readonly outputTypes: { [key: string]: ArgumentType | undefined; }; /** * * @type {string} * @memberof TaskType */ parametersEditorComponent: string | null; /** * * @type {boolean} * @memberof TaskType */ superuserOnly: boolean; /** * * @type {string} * @memberof TaskType */ iconClass: string | null; /** * * @type {boolean} * @memberof TaskType */ readonly isAvailable: boolean; /** * * @type {boolean} * @memberof TaskType */ allowInJobs: boolean; /** * * @type {string} * @memberof TaskType */ newSinceVersion: string | null; } export declare function TaskTypeFromJSON(json: any): TaskType; export declare function TaskTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskType; export declare function TaskTypeToJSON(value?: TaskType | null): any;