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