import "../ApiClient-fBZ10h6n.mjs"; import "../WorkerGroupFallback-B6jAaIQG.mjs"; import { t as WorkerGroup_default } from "../WorkerGroup-COoO34xB.mjs"; //#region src/model/AbstractFlow.d.ts type IAbstractFlow = { 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; variables: any; workerGroup: WorkerGroup_default; deleted: boolean; }; /** * @typedef {Object} IAbstractFlow * @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 {Array.} labels * @property {Object} variables * @property {WorkerGroup} workerGroup * @property {Boolean} deleted */ /** * The AbstractFlow model module. * @module model/AbstractFlow * @type {IAbstractFlow} */ declare class AbstractFlow { /** * 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): void; /** * Constructs a AbstractFlow 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/AbstractFlow} obj Optional instance to populate. * @return {module:model/AbstractFlow} The populated AbstractFlow instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to AbstractFlow. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to AbstractFlow. */ static validateJSON(data: any): boolean; /** * Constructs a new AbstractFlow. * @alias module:model/AbstractFlow * @param {String} id - * @param {String} namespace - * @param {Boolean} disabled - * @param {Boolean} deleted - */ constructor(id: string, namespace: string, disabled: boolean, deleted: boolean); id: string; namespace: string; revision: number; updated: Date; description: string; inputs: any; outputs: any; disabled: boolean; labels: any; variables: any; workerGroup: WorkerGroup_default; deleted: boolean; } declare namespace AbstractFlow { let RequiredProperties: string[]; } //#endregion export { IAbstractFlow, AbstractFlow as default };