Skip to main content

NestActionEnum

enum class NestActionEnum

Description: Nest action enum

enum class NestActionEnum(var value: Int) {
NEST_ACTION_UNKNOWN(0),

/**
*On Power on Calibration start Power on Air conditioner on
*/
NEST_ACTION_OPEN(1),

/**
*Off Power off Calibration complete Shut down Air conditioner off
*/
NEST_ACTION_CLOSE(2),

/**
*stop
*/
NEST_ACTION_STOP(3),

/**
* self-test
*/
NEST_ACTION_AUTO_CHECK(4);
}