//#region src/model/FlowRelation.d.ts /** * Enum FlowRelation * @type {{ * "FLOW_TASK": "FLOW_TASK","FLOW_TRIGGER": "FLOW_TRIGGER", * }} */ declare const FlowRelationStatic: { "FLOW_TASK": "FLOW_TASK"; "FLOW_TRIGGER": "FLOW_TRIGGER"; }; /** * Enum class FlowRelation. * @enum {} * @readonly */ declare class FlowRelation { /** * Returns a FlowRelation enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/FlowRelation} The enum FlowRelation value. */ static constructFromObject(object: any): any; /** * value: "FLOW_TASK" * @const */ FLOW_TASK: string; /** * value: "FLOW_TRIGGER" * @const */ FLOW_TRIGGER: string; } /** * * */ type FlowRelation = any; //#endregion export { FlowRelation, FlowRelation as default, FlowRelationStatic };