rv.analytics.Startup.ClearGroup */ class ClearGroup extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field int32 clear_group_count = 1; */ protected $clear_group_count = 0; /** * Generated from protobuf field int32 hidden_clear_group_count = 2; */ protected $hidden_clear_group_count = 0; /** * Generated from protobuf field int32 default_icon_count = 3; */ protected $default_icon_count = 0; /** * Generated from protobuf field int32 custom_icon_count = 4; */ protected $custom_icon_count = 0; /** * Generated from protobuf field int32 icon_tint_count = 5; */ protected $icon_tint_count = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $clear_group_count * @type int $hidden_clear_group_count * @type int $default_icon_count * @type int $custom_icon_count * @type int $icon_tint_count * } */ public function __construct($data = NULL) { \GPBMetadata\AnalyticsStartup::initOnce(); parent::__construct($data); } /** * Generated from protobuf field int32 clear_group_count = 1; * @return int */ public function getClearGroupCount() { return $this->clear_group_count; } /** * Generated from protobuf field int32 clear_group_count = 1; * @param int $var * @return $this */ public function setClearGroupCount($var) { GPBUtil::checkInt32($var); $this->clear_group_count = $var; return $this; } /** * Generated from protobuf field int32 hidden_clear_group_count = 2; * @return int */ public function getHiddenClearGroupCount() { return $this->hidden_clear_group_count; } /** * Generated from protobuf field int32 hidden_clear_group_count = 2; * @param int $var * @return $this */ public function setHiddenClearGroupCount($var) { GPBUtil::checkInt32($var); $this->hidden_clear_group_count = $var; return $this; } /** * Generated from protobuf field int32 default_icon_count = 3; * @return int */ public function getDefaultIconCount() { return $this->default_icon_count; } /** * Generated from protobuf field int32 default_icon_count = 3; * @param int $var * @return $this */ public function setDefaultIconCount($var) { GPBUtil::checkInt32($var); $this->default_icon_count = $var; return $this; } /** * Generated from protobuf field int32 custom_icon_count = 4; * @return int */ public function getCustomIconCount() { return $this->custom_icon_count; } /** * Generated from protobuf field int32 custom_icon_count = 4; * @param int $var * @return $this */ public function setCustomIconCount($var) { GPBUtil::checkInt32($var); $this->custom_icon_count = $var; return $this; } /** * Generated from protobuf field int32 icon_tint_count = 5; * @return int */ public function getIconTintCount() { return $this->icon_tint_count; } /** * Generated from protobuf field int32 icon_tint_count = 5; * @param int $var * @return $this */ public function setIconTintCount($var) { GPBUtil::checkInt32($var); $this->icon_tint_count = $var; return $this; } }