proto.api.UserBaseInfo
*/
class UserBaseInfo extends \Google\Protobuf\Internal\Message
{
/**
* 用户id
*
* Generated from protobuf field int32 user_id = 1;
*/
protected $user_id = 0;
/**
* 用户名称
*
* Generated from protobuf field string username = 2;
*/
protected $username = '';
/**
* 用户手机号
*
* Generated from protobuf field string phone = 3;
*/
protected $phone = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $user_id
* 用户id
* @type string $username
* 用户名称
* @type string $phone
* 用户手机号
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\EntUser::initOnce();
parent::__construct($data);
}
/**
* 用户id
*
* Generated from protobuf field int32 user_id = 1;
* @return int
*/
public function getUserId()
{
return $this->user_id;
}
/**
* 用户id
*
* Generated from protobuf field int32 user_id = 1;
* @param int $var
* @return $this
*/
public function setUserId($var)
{
GPBUtil::checkInt32($var);
$this->user_id = $var;
return $this;
}
/**
* 用户名称
*
* Generated from protobuf field string username = 2;
* @return string
*/
public function getUsername()
{
return $this->username;
}
/**
* 用户名称
*
* Generated from protobuf field string username = 2;
* @param string $var
* @return $this
*/
public function setUsername($var)
{
GPBUtil::checkString($var, True);
$this->username = $var;
return $this;
}
/**
* 用户手机号
*
* Generated from protobuf field string phone = 3;
* @return string
*/
public function getPhone()
{
return $this->phone;
}
/**
* 用户手机号
*
* Generated from protobuf field string phone = 3;
* @param string $var
* @return $this
*/
public function setPhone($var)
{
GPBUtil::checkString($var, True);
$this->phone = $var;
return $this;
}
}