12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: common.proto
- namespace Common_pack;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- *被踢登陆
- *
- * Generated from protobuf message <code>common_pack.BeKickLogin</code>
- */
- class BeKickLogin extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.common_pack.MsgError err_msg = 1;</code>
- */
- protected $err_msg = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Common_pack\MsgError $err_msg
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Common::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>.common_pack.MsgError err_msg = 1;</code>
- * @return \Common_pack\MsgError|null
- */
- public function getErrMsg()
- {
- return $this->err_msg;
- }
- public function hasErrMsg()
- {
- return isset($this->err_msg);
- }
- public function clearErrMsg()
- {
- unset($this->err_msg);
- }
- /**
- * Generated from protobuf field <code>.common_pack.MsgError err_msg = 1;</code>
- * @param \Common_pack\MsgError $var
- * @return $this
- */
- public function setErrMsg($var)
- {
- GPBUtil::checkMessage($var, \Common_pack\MsgError::class);
- $this->err_msg = $var;
- return $this;
- }
- }
|