rv.data.Preferences.Network.Link */ class Link extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool enable = 1; */ protected $enable = false; /** * Generated from protobuf field string link_group = 2; */ protected $link_group = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $enable * @type string $link_group * } */ public function __construct($data = NULL) { \GPBMetadata\Preferences::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool enable = 1; * @return bool */ public function getEnable() { return $this->enable; } /** * Generated from protobuf field bool enable = 1; * @param bool $var * @return $this */ public function setEnable($var) { GPBUtil::checkBool($var); $this->enable = $var; return $this; } /** * Generated from protobuf field string link_group = 2; * @return string */ public function getLinkGroup() { return $this->link_group; } /** * Generated from protobuf field string link_group = 2; * @param string $var * @return $this */ public function setLinkGroup($var) { GPBUtil::checkString($var, True); $this->link_group = $var; return $this; } }