rv.analytics.UI.QuickSearch.OpenItems
*/
class OpenItems extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.analytics.UI.QuickSearch.OpenItems.Source source = 1;
*/
protected $source = 0;
/**
* Generated from protobuf field .rv.analytics.UI.QuickSearch.OpenItems.Style style = 2;
*/
protected $style = 0;
/**
* Generated from protobuf field int32 count = 3;
*/
protected $count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $source
* @type int $style
* @type int $count
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsUI::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.analytics.UI.QuickSearch.OpenItems.Source source = 1;
* @return int
*/
public function getSource()
{
return $this->source;
}
/**
* Generated from protobuf field .rv.analytics.UI.QuickSearch.OpenItems.Source source = 1;
* @param int $var
* @return $this
*/
public function setSource($var)
{
GPBUtil::checkEnum($var, \Rv\Analytics\UI\QuickSearch\OpenItems\Source::class);
$this->source = $var;
return $this;
}
/**
* Generated from protobuf field .rv.analytics.UI.QuickSearch.OpenItems.Style style = 2;
* @return int
*/
public function getStyle()
{
return $this->style;
}
/**
* Generated from protobuf field .rv.analytics.UI.QuickSearch.OpenItems.Style style = 2;
* @param int $var
* @return $this
*/
public function setStyle($var)
{
GPBUtil::checkEnum($var, \Rv\Analytics\UI\QuickSearch\OpenItems\Style::class);
$this->style = $var;
return $this;
}
/**
* Generated from protobuf field int32 count = 3;
* @return int
*/
public function getCount()
{
return $this->count;
}
/**
* Generated from protobuf field int32 count = 3;
* @param int $var
* @return $this
*/
public function setCount($var)
{
GPBUtil::checkInt32($var);
$this->count = $var;
return $this;
}
}