EventPriorityEnum
enum class EventPriorityEnum
Description: : Event priority
enum class EventPriorityEnum(var value: Int) {
UNKNOWN(0),
/**
* Warning prompt
*/
HINT(1),
/**
* If an error occurs, the currently executing task will be exited, and the state mode after exit will be notified by the working state interface
*/
MODE_EXIT(2),
/**
* An emergency error will trigger the return operation
*/
EMERGENCY(3),
/**
* Normal event notification
*/
NORMAL(4);
}