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