rv.analytics.Startup.Themes
*/
class Themes extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int32 theme_count = 1;
*/
protected $theme_count = 0;
/**
* Generated from protobuf field int32 theme_folder_count = 2;
*/
protected $theme_folder_count = 0;
/**
* Generated from protobuf field int32 theme_folder_max_depth = 3;
*/
protected $theme_folder_max_depth = 0;
/**
* Generated from protobuf field int32 theme_slides_count = 4;
*/
protected $theme_slides_count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $theme_count
* @type int $theme_folder_count
* @type int $theme_folder_max_depth
* @type int $theme_slides_count
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsStartup::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field int32 theme_count = 1;
* @return int
*/
public function getThemeCount()
{
return $this->theme_count;
}
/**
* Generated from protobuf field int32 theme_count = 1;
* @param int $var
* @return $this
*/
public function setThemeCount($var)
{
GPBUtil::checkInt32($var);
$this->theme_count = $var;
return $this;
}
/**
* Generated from protobuf field int32 theme_folder_count = 2;
* @return int
*/
public function getThemeFolderCount()
{
return $this->theme_folder_count;
}
/**
* Generated from protobuf field int32 theme_folder_count = 2;
* @param int $var
* @return $this
*/
public function setThemeFolderCount($var)
{
GPBUtil::checkInt32($var);
$this->theme_folder_count = $var;
return $this;
}
/**
* Generated from protobuf field int32 theme_folder_max_depth = 3;
* @return int
*/
public function getThemeFolderMaxDepth()
{
return $this->theme_folder_max_depth;
}
/**
* Generated from protobuf field int32 theme_folder_max_depth = 3;
* @param int $var
* @return $this
*/
public function setThemeFolderMaxDepth($var)
{
GPBUtil::checkInt32($var);
$this->theme_folder_max_depth = $var;
return $this;
}
/**
* Generated from protobuf field int32 theme_slides_count = 4;
* @return int
*/
public function getThemeSlidesCount()
{
return $this->theme_slides_count;
}
/**
* Generated from protobuf field int32 theme_slides_count = 4;
* @param int $var
* @return $this
*/
public function setThemeSlidesCount($var)
{
GPBUtil::checkInt32($var);
$this->theme_slides_count = $var;
return $this;
}
}