87 lines
1.8 KiB
PHP
87 lines
1.8 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proApiV1Link.proto
|
|
|
|
namespace Rv\Data;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.API_v1_GroupMember</code>
|
|
*/
|
|
class API_v1_GroupMember extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>string ip = 1;</code>
|
|
*/
|
|
protected $ip = '';
|
|
/**
|
|
* Generated from protobuf field <code>uint32 port = 2;</code>
|
|
*/
|
|
protected $port = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $ip
|
|
* @type int $port
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\ProApiV1Link::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string ip = 1;</code>
|
|
* @return string
|
|
*/
|
|
public function getIp()
|
|
{
|
|
return $this->ip;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string ip = 1;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setIp($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->ip = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>uint32 port = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getPort()
|
|
{
|
|
return $this->port;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>uint32 port = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setPort($var)
|
|
{
|
|
GPBUtil::checkUint32($var);
|
|
$this->port = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|