rv.data.TimerStateUpdate
*/
class TimerStateUpdate extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.Timer timer = 1;
*/
protected $timer = null;
/**
* Generated from protobuf field .rv.data.TimerRuntimeState state = 2;
*/
protected $state = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\Timer $timer
* @type \Rv\Data\TimerRuntimeState $state
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.Timer timer = 1;
* @return \Rv\Data\Timer|null
*/
public function getTimer()
{
return $this->timer;
}
public function hasTimer()
{
return isset($this->timer);
}
public function clearTimer()
{
unset($this->timer);
}
/**
* Generated from protobuf field .rv.data.Timer timer = 1;
* @param \Rv\Data\Timer $var
* @return $this
*/
public function setTimer($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Timer::class);
$this->timer = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.TimerRuntimeState state = 2;
* @return \Rv\Data\TimerRuntimeState|null
*/
public function getState()
{
return $this->state;
}
public function hasState()
{
return isset($this->state);
}
public function clearState()
{
unset($this->state);
}
/**
* Generated from protobuf field .rv.data.TimerRuntimeState state = 2;
* @param \Rv\Data\TimerRuntimeState $var
* @return $this
*/
public function setState($var)
{
GPBUtil::checkMessage($var, \Rv\Data\TimerRuntimeState::class);
$this->state = $var;
return $this;
}
}