rv.analytics.Trigger.TestPattern
*/
class TestPattern extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.analytics.Trigger.TestPattern.TestPatternType test_pattern_type = 1;
*/
protected $test_pattern_type = 0;
/**
* Generated from protobuf field .rv.analytics.Trigger.TestPattern.LogoType logo = 2;
*/
protected $logo = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $test_pattern_type
* @type int $logo
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsTrigger::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.analytics.Trigger.TestPattern.TestPatternType test_pattern_type = 1;
* @return int
*/
public function getTestPatternType()
{
return $this->test_pattern_type;
}
/**
* Generated from protobuf field .rv.analytics.Trigger.TestPattern.TestPatternType test_pattern_type = 1;
* @param int $var
* @return $this
*/
public function setTestPatternType($var)
{
GPBUtil::checkEnum($var, \Rv\Analytics\Trigger\TestPattern\TestPatternType::class);
$this->test_pattern_type = $var;
return $this;
}
/**
* Generated from protobuf field .rv.analytics.Trigger.TestPattern.LogoType logo = 2;
* @return int
*/
public function getLogo()
{
return $this->logo;
}
/**
* Generated from protobuf field .rv.analytics.Trigger.TestPattern.LogoType logo = 2;
* @param int $var
* @return $this
*/
public function setLogo($var)
{
GPBUtil::checkEnum($var, \Rv\Analytics\Trigger\TestPattern\LogoType::class);
$this->logo = $var;
return $this;
}
}