rv.data.TestPatternDefinition */ class TestPatternDefinition extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.UUID uuid = 1; */ protected $uuid = null; /** * Generated from protobuf field string name_localization_key = 2; */ protected $name_localization_key = ''; /** * Generated from protobuf field repeated .rv.data.TestPatternDefinition.Property properties = 3; */ private $properties; /** * Generated from protobuf field bool show_delay_settings = 4; */ protected $show_delay_settings = false; /** * Generated from protobuf field bool is_default = 5; */ protected $is_default = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\UUID $uuid * @type string $name_localization_key * @type array<\Rv\Data\TestPatternDefinition\Property>|\Google\Protobuf\Internal\RepeatedField $properties * @type bool $show_delay_settings * @type bool $is_default * } */ public function __construct($data = NULL) { \GPBMetadata\TestPattern::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.UUID uuid = 1; * @return \Rv\Data\UUID|null */ public function getUuid() { return $this->uuid; } public function hasUuid() { return isset($this->uuid); } public function clearUuid() { unset($this->uuid); } /** * Generated from protobuf field .rv.data.UUID uuid = 1; * @param \Rv\Data\UUID $var * @return $this */ public function setUuid($var) { GPBUtil::checkMessage($var, \Rv\Data\UUID::class); $this->uuid = $var; return $this; } /** * Generated from protobuf field string name_localization_key = 2; * @return string */ public function getNameLocalizationKey() { return $this->name_localization_key; } /** * Generated from protobuf field string name_localization_key = 2; * @param string $var * @return $this */ public function setNameLocalizationKey($var) { GPBUtil::checkString($var, True); $this->name_localization_key = $var; return $this; } /** * Generated from protobuf field repeated .rv.data.TestPatternDefinition.Property properties = 3; * @return \Google\Protobuf\Internal\RepeatedField */ public function getProperties() { return $this->properties; } /** * Generated from protobuf field repeated .rv.data.TestPatternDefinition.Property properties = 3; * @param array<\Rv\Data\TestPatternDefinition\Property>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setProperties($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\TestPatternDefinition\Property::class); $this->properties = $arr; return $this; } /** * Generated from protobuf field bool show_delay_settings = 4; * @return bool */ public function getShowDelaySettings() { return $this->show_delay_settings; } /** * Generated from protobuf field bool show_delay_settings = 4; * @param bool $var * @return $this */ public function setShowDelaySettings($var) { GPBUtil::checkBool($var); $this->show_delay_settings = $var; return $this; } /** * Generated from protobuf field bool is_default = 5; * @return bool */ public function getIsDefault() { return $this->is_default; } /** * Generated from protobuf field bool is_default = 5; * @param bool $var * @return $this */ public function setIsDefault($var) { GPBUtil::checkBool($var); $this->is_default = $var; return $this; } }