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