uraus.kku.Request.RequestPublicLogin
*/
class RequestPublicLogin extends \Google\Protobuf\Internal\Message
{
/**
* 手机好吗
*
* Generated from protobuf field string mobile = 1;
*/
protected $mobile = '';
/**
* 密码
*
* Generated from protobuf field string password = 2;
*/
protected $password = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $mobile
* 手机好吗
* @type string $password
* 密码
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Proto\Game::initOnce();
parent::__construct($data);
}
/**
* 手机好吗
*
* Generated from protobuf field string mobile = 1;
* @return string
*/
public function getMobile()
{
return $this->mobile;
}
/**
* 手机好吗
*
* Generated from protobuf field string mobile = 1;
* @param string $var
* @return $this
*/
public function setMobile($var)
{
GPBUtil::checkString($var, True);
$this->mobile = $var;
return $this;
}
/**
* 密码
*
* Generated from protobuf field string password = 2;
* @return string
*/
public function getPassword()
{
return $this->password;
}
/**
* 密码
*
* Generated from protobuf field string password = 2;
* @param string $var
* @return $this
*/
public function setPassword($var)
{
GPBUtil::checkString($var, True);
$this->password = $var;
return $this;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(RequestPublicLogin::class, \Uraus\Kku\Request_RequestPublicLogin::class);