import "../ApiClient-fBZ10h6n.mjs"; import "../WorkerGroupFallback-B6jAaIQG.mjs"; import { t as WorkerGroup_default } from "../WorkerGroup-COoO34xB.mjs"; import { t as MapObjectObject_default } from "../MapObjectObject-CiMbke6f.mjs"; //#region src/model/FlowForExecution.d.ts type IFlowForExecution = { id: string; namespace: string; revision: number; /** * - The timestamp when this revision was created or last updated. */ updated: Date; description: string; /** * :model/InputObject>} inputs */ "": Array; disabled: boolean; /** * - Labels as a list of Label (key/value pairs) or as a map of string to string. */ labels: MapObjectObject_default; variables: any; workerGroup: WorkerGroup_default; deleted: boolean; }; /** * @typedef {Object} IFlowForExecution * @property {String} id * @property {String} namespace * @property {Number} revision * @property {Date} updated - The timestamp when this revision was created or last updated. * @property {String} description * @property {Array.} inputs * @property {Array.} outputs * @property {Boolean} disabled * @property {MapObjectObject} labels - Labels as a list of Label (key/value pairs) or as a map of string to string. * @property {Object} variables * @property {WorkerGroup} workerGroup * @property {Boolean} deleted * @property {Array.} tasks * @property {Array.} errors * @property {Array.} finally * @property {Array.} afterExecution * @property {Array.} triggers */ /** * The FlowForExecution model module. * @module model/FlowForExecution * @type {IFlowForExecution} */ declare class FlowForExecution { /** * 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, namespace: any, disabled: any, deleted: any, tasks: any): void; /** * Constructs a FlowForExecution 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/FlowForExecution} obj Optional instance to populate. * @return {module:model/FlowForExecution} The populated FlowForExecution instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to FlowForExecution. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to FlowForExecution. */ static validateJSON(data: any): boolean; /** * Constructs a new FlowForExecution. * @alias module:model/FlowForExecution * @implements module:model/AbstractFlow * @param {String} id - * @param {String} namespace - * @param {Boolean} disabled - * @param {Boolean} deleted - * @param {Array.} tasks - */ constructor(id: string, namespace: string, disabled: boolean, deleted: boolean, tasks: any); id: string; namespace: string; revision: number; updated: Date; description: string; inputs: any; outputs: any; disabled: boolean; labels: MapObjectObject_default; variables: any; workerGroup: WorkerGroup_default; deleted: boolean; tasks: any; errors: any; finally: any; afterExecution: any; triggers: any; } declare namespace FlowForExecution { let RequiredProperties: string[]; } //#endregion export { IFlowForExecution, FlowForExecution as default };