87 lines
2 KiB
PHP
87 lines
2 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proApi.proto
|
|
|
|
namespace Rv\Data\ProLink\HandlerIn\AddConnectionResult\Failure;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.ProLink.HandlerIn.AddConnectionResult.Failure.InOtherGroup</code>
|
|
*/
|
|
class InOtherGroup extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>string member_name = 1;</code>
|
|
*/
|
|
protected $member_name = '';
|
|
/**
|
|
* Generated from protobuf field <code>string group_name = 2;</code>
|
|
*/
|
|
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 <code>string member_name = 1;</code>
|
|
* @return string
|
|
*/
|
|
public function getMemberName()
|
|
{
|
|
return $this->member_name;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string member_name = 1;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setMemberName($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->member_name = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string group_name = 2;</code>
|
|
* @return string
|
|
*/
|
|
public function getGroupName()
|
|
{
|
|
return $this->group_name;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string group_name = 2;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setGroupName($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->group_name = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|