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

87 lines
2.3 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: analyticsTrigger.proto
namespace Rv\Analytics\Trigger;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.analytics.Trigger.TestPattern</code>
*/
class TestPattern extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.analytics.Trigger.TestPattern.TestPatternType test_pattern_type = 1;</code>
*/
protected $test_pattern_type = 0;
/**
* Generated from protobuf field <code>.rv.analytics.Trigger.TestPattern.LogoType logo = 2;</code>
*/
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 <code>.rv.analytics.Trigger.TestPattern.TestPatternType test_pattern_type = 1;</code>
* @return int
*/
public function getTestPatternType()
{
return $this->test_pattern_type;
}
/**
* Generated from protobuf field <code>.rv.analytics.Trigger.TestPattern.TestPatternType test_pattern_type = 1;</code>
* @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 <code>.rv.analytics.Trigger.TestPattern.LogoType logo = 2;</code>
* @return int
*/
public function getLogo()
{
return $this->logo;
}
/**
* Generated from protobuf field <code>.rv.analytics.Trigger.TestPattern.LogoType logo = 2;</code>
* @param int $var
* @return $this
*/
public function setLogo($var)
{
GPBUtil::checkEnum($var, \Rv\Analytics\Trigger\TestPattern\LogoType::class);
$this->logo = $var;
return $this;
}
}