DoorStatusEnum
enum class DoorStatusEnum
Description: Door status state
enum class DoorStatusEnum(var value: Int) {
/**
*0-initial state
*/
DOOR_INIT(0),
/**
*1-The door is opened
*/
DOOR_OPENED(1),
/**
*2-Closed
*/
DOOR_CLOSED(2),
/**
*3-The door is opening
*/
DOOR_OPENING(3),
/**
*4-Closing the door
*/
DOOR_CLOSING(4),
/**
*-1-unknown
*/
UNKNOWN(-1);
}