rv.analytics.Startup.Screens
*/
class Screens extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool show_screens_launch = 1;
*/
protected $show_screens_launch = false;
/**
* Generated from protobuf field bool show_performance_on_screen = 2;
*/
protected $show_performance_on_screen = false;
/**
* Generated from protobuf field bool ignore_background_colors = 3;
*/
protected $ignore_background_colors = false;
/**
* Generated from protobuf field bool show_keynote_ppt_screens = 4;
*/
protected $show_keynote_ppt_screens = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $show_screens_launch
* @type bool $show_performance_on_screen
* @type bool $ignore_background_colors
* @type bool $show_keynote_ppt_screens
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsStartup::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool show_screens_launch = 1;
* @return bool
*/
public function getShowScreensLaunch()
{
return $this->show_screens_launch;
}
/**
* Generated from protobuf field bool show_screens_launch = 1;
* @param bool $var
* @return $this
*/
public function setShowScreensLaunch($var)
{
GPBUtil::checkBool($var);
$this->show_screens_launch = $var;
return $this;
}
/**
* Generated from protobuf field bool show_performance_on_screen = 2;
* @return bool
*/
public function getShowPerformanceOnScreen()
{
return $this->show_performance_on_screen;
}
/**
* Generated from protobuf field bool show_performance_on_screen = 2;
* @param bool $var
* @return $this
*/
public function setShowPerformanceOnScreen($var)
{
GPBUtil::checkBool($var);
$this->show_performance_on_screen = $var;
return $this;
}
/**
* Generated from protobuf field bool ignore_background_colors = 3;
* @return bool
*/
public function getIgnoreBackgroundColors()
{
return $this->ignore_background_colors;
}
/**
* Generated from protobuf field bool ignore_background_colors = 3;
* @param bool $var
* @return $this
*/
public function setIgnoreBackgroundColors($var)
{
GPBUtil::checkBool($var);
$this->ignore_background_colors = $var;
return $this;
}
/**
* Generated from protobuf field bool show_keynote_ppt_screens = 4;
* @return bool
*/
public function getShowKeynotePptScreens()
{
return $this->show_keynote_ppt_screens;
}
/**
* Generated from protobuf field bool show_keynote_ppt_screens = 4;
* @param bool $var
* @return $this
*/
public function setShowKeynotePptScreens($var)
{
GPBUtil::checkBool($var);
$this->show_keynote_ppt_screens = $var;
return $this;
}
}