Skip to main content

NestSwitchAction

enum class NestSwitchAction

Description: Nest switch action

enum class NestSwitchAction(var value: Int) {
/**
* open state of switch action
*/
OPEN(0x01),
/**
* close state of switch action
*/
CLOSE(0x02),
/**
* stop state of switch action
*/
STOP(0x03),
/**
* automatic checking of switch action
*/
AUTO_CHECK(0x04),
/**
* unknown state of switch action
*/
UNKNOWN(-1);
}