rv.analytics.ui.WindowedOutputCreated
*/
class WindowedOutputCreated extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.analytics.ui.WindowedOutputCreated.ScreenType screen_type = 1;
*/
protected $screen_type = 0;
/**
* Generated from protobuf field int32 num_active_windowed_outputs = 2;
*/
protected $num_active_windowed_outputs = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $screen_type
* @type int $num_active_windowed_outputs
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsUI::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.analytics.ui.WindowedOutputCreated.ScreenType screen_type = 1;
* @return int
*/
public function getScreenType()
{
return $this->screen_type;
}
/**
* Generated from protobuf field .rv.analytics.ui.WindowedOutputCreated.ScreenType screen_type = 1;
* @param int $var
* @return $this
*/
public function setScreenType($var)
{
GPBUtil::checkEnum($var, \Rv\Analytics\Ui\WindowedOutputCreated\ScreenType::class);
$this->screen_type = $var;
return $this;
}
/**
* Generated from protobuf field int32 num_active_windowed_outputs = 2;
* @return int
*/
public function getNumActiveWindowedOutputs()
{
return $this->num_active_windowed_outputs;
}
/**
* Generated from protobuf field int32 num_active_windowed_outputs = 2;
* @param int $var
* @return $this
*/
public function setNumActiveWindowedOutputs($var)
{
GPBUtil::checkInt32($var);
$this->num_active_windowed_outputs = $var;
return $this;
}
}