propresenter-php/php/generated/Rv/Analytics/Startup/Themes.php
2026-03-01 16:12:17 +01:00

141 lines
3.4 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: analyticsStartup.proto
namespace Rv\Analytics\Startup;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.analytics.Startup.Themes</code>
*/
class Themes extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>int32 theme_count = 1;</code>
*/
protected $theme_count = 0;
/**
* Generated from protobuf field <code>int32 theme_folder_count = 2;</code>
*/
protected $theme_folder_count = 0;
/**
* Generated from protobuf field <code>int32 theme_folder_max_depth = 3;</code>
*/
protected $theme_folder_max_depth = 0;
/**
* Generated from protobuf field <code>int32 theme_slides_count = 4;</code>
*/
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 <code>int32 theme_count = 1;</code>
* @return int
*/
public function getThemeCount()
{
return $this->theme_count;
}
/**
* Generated from protobuf field <code>int32 theme_count = 1;</code>
* @param int $var
* @return $this
*/
public function setThemeCount($var)
{
GPBUtil::checkInt32($var);
$this->theme_count = $var;
return $this;
}
/**
* Generated from protobuf field <code>int32 theme_folder_count = 2;</code>
* @return int
*/
public function getThemeFolderCount()
{
return $this->theme_folder_count;
}
/**
* Generated from protobuf field <code>int32 theme_folder_count = 2;</code>
* @param int $var
* @return $this
*/
public function setThemeFolderCount($var)
{
GPBUtil::checkInt32($var);
$this->theme_folder_count = $var;
return $this;
}
/**
* Generated from protobuf field <code>int32 theme_folder_max_depth = 3;</code>
* @return int
*/
public function getThemeFolderMaxDepth()
{
return $this->theme_folder_max_depth;
}
/**
* Generated from protobuf field <code>int32 theme_folder_max_depth = 3;</code>
* @param int $var
* @return $this
*/
public function setThemeFolderMaxDepth($var)
{
GPBUtil::checkInt32($var);
$this->theme_folder_max_depth = $var;
return $this;
}
/**
* Generated from protobuf field <code>int32 theme_slides_count = 4;</code>
* @return int
*/
public function getThemeSlidesCount()
{
return $this->theme_slides_count;
}
/**
* Generated from protobuf field <code>int32 theme_slides_count = 4;</code>
* @param int $var
* @return $this
*/
public function setThemeSlidesCount($var)
{
GPBUtil::checkInt32($var);
$this->theme_slides_count = $var;
return $this;
}
}