87 lines
1.9 KiB
PHP
87 lines
1.9 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: preferences.proto
|
|
|
|
namespace Rv\Data\Preferences\Network;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.Preferences.Network.Link</code>
|
|
*/
|
|
class Link extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>bool enable = 1;</code>
|
|
*/
|
|
protected $enable = false;
|
|
/**
|
|
* Generated from protobuf field <code>string link_group = 2;</code>
|
|
*/
|
|
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 <code>bool enable = 1;</code>
|
|
* @return bool
|
|
*/
|
|
public function getEnable()
|
|
{
|
|
return $this->enable;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool enable = 1;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setEnable($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->enable = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string link_group = 2;</code>
|
|
* @return string
|
|
*/
|
|
public function getLinkGroup()
|
|
{
|
|
return $this->link_group;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string link_group = 2;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setLinkGroup($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->link_group = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|