rv.data.ProLink.HandlerIn.AddConnectionResult.Failure.AlreadyInGroup
*/
class AlreadyInGroup extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string member_name = 1;
*/
protected $member_name = '';
/**
* Generated from protobuf field string group_name = 2;
*/
protected $group_name = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $member_name
* @type string $group_name
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApi::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string member_name = 1;
* @return string
*/
public function getMemberName()
{
return $this->member_name;
}
/**
* Generated from protobuf field string member_name = 1;
* @param string $var
* @return $this
*/
public function setMemberName($var)
{
GPBUtil::checkString($var, True);
$this->member_name = $var;
return $this;
}
/**
* Generated from protobuf field string group_name = 2;
* @return string
*/
public function getGroupName()
{
return $this->group_name;
}
/**
* Generated from protobuf field string group_name = 2;
* @param string $var
* @return $this
*/
public function setGroupName($var)
{
GPBUtil::checkString($var, True);
$this->group_name = $var;
return $this;
}
}