import "../ApiClient-fBZ10h6n.mjs"; import { t as ExecutableTaskSubflowId_default } from "../ExecutableTaskSubflowId-7Nn9qyqT.mjs"; //#region src/model/TaskForExecution.d.ts type ITaskForExecution = { id: string; type: string; /** * - Defines the version of the plugin to use. The version must follow the Semantic Versioning (SemVer) specification: - A single-digit MAJOR version (e.g., `1`). - A MAJOR.MINOR version (e.g., `1.1`). - A MAJOR.MINOR.PATCH version, optionally with any qualifier (e.g., `1.1.2`, `1.1.0-SNAPSHOT`). */ version: string; /** * :model/TaskForExecution>} tasks */ "": Array; subflowId: ExecutableTaskSubflowId_default; }; /** * @typedef {Object} ITaskForExecution * @property {String} id * @property {String} type * @property {String} version - Defines the version of the plugin to use. The version must follow the Semantic Versioning (SemVer) specification: - A single-digit MAJOR version (e.g., `1`). - A MAJOR.MINOR version (e.g., `1.1`). - A MAJOR.MINOR.PATCH version, optionally with any qualifier (e.g., `1.1.2`, `1.1.0-SNAPSHOT`). * @property {Array.} tasks * @property {Array.} inputs * @property {ExecutableTaskSubflowId} subflowId */ /** * The TaskForExecution model module. * @module model/TaskForExecution * @type {ITaskForExecution} */ declare class TaskForExecution { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, type: any): void; /** * Constructs a TaskForExecution from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/TaskForExecution} obj Optional instance to populate. * @return {module:model/TaskForExecution} The populated TaskForExecution instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to TaskForExecution. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to TaskForExecution. */ static validateJSON(data: any): boolean; /** * Constructs a new TaskForExecution. * @alias module:model/TaskForExecution * @param {String} id - * @param {String} type - */ constructor(id: string, type: string); id: string; type: string; version: string; tasks: any; inputs: any; subflowId: ExecutableTaskSubflowId_default; } declare namespace TaskForExecution { let RequiredProperties: string[]; } //#endregion export { ITaskForExecution, TaskForExecution as default };