rv.analytics.Startup.NetworkLink
*/
class NetworkLink extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool enabled = 1;
*/
protected $enabled = false;
/**
* Generated from protobuf field uint32 member_count = 2;
*/
protected $member_count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $enabled
* @type int $member_count
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\AnalyticsStartup::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool enabled = 1;
* @return bool
*/
public function getEnabled()
{
return $this->enabled;
}
/**
* Generated from protobuf field bool enabled = 1;
* @param bool $var
* @return $this
*/
public function setEnabled($var)
{
GPBUtil::checkBool($var);
$this->enabled = $var;
return $this;
}
/**
* Generated from protobuf field uint32 member_count = 2;
* @return int
*/
public function getMemberCount()
{
return $this->member_count;
}
/**
* Generated from protobuf field uint32 member_count = 2;
* @param int $var
* @return $this
*/
public function setMemberCount($var)
{
GPBUtil::checkUint32($var);
$this->member_count = $var;
return $this;
}
}