rv.data.NetworkAPI.Group.Member */ class Member extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string ip_address = 1; */ protected $ip_address = ''; /** * Generated from protobuf field int32 port = 2; */ protected $port = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $ip_address * @type int $port * } */ public function __construct($data = NULL) { \GPBMetadata\ProApi::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string ip_address = 1; * @return string */ public function getIpAddress() { return $this->ip_address; } /** * Generated from protobuf field string ip_address = 1; * @param string $var * @return $this */ public function setIpAddress($var) { GPBUtil::checkString($var, True); $this->ip_address = $var; return $this; } /** * Generated from protobuf field int32 port = 2; * @return int */ public function getPort() { return $this->port; } /** * Generated from protobuf field int32 port = 2; * @param int $var * @return $this */ public function setPort($var) { GPBUtil::checkInt32($var); $this->port = $var; return $this; } }