rv.data.TimedPlayback.Update.MonitorSource
*/
class MonitorSource extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool enable = 1;
*/
protected $enable = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $enable
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\TimedPlayback::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool enable = 1;
* @return bool
*/
public function getEnable()
{
return $this->enable;
}
/**
* Generated from protobuf field bool enable = 1;
* @param bool $var
* @return $this
*/
public function setEnable($var)
{
GPBUtil::checkBool($var);
$this->enable = $var;
return $this;
}
}