1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class EntUser extends \Google\Protobuf\Internal\Message
- {
-
- protected $base_info = null;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntUser::initOnce();
- parent::__construct($data);
- }
-
- public function getBaseInfo()
- {
- return $this->base_info;
- }
- public function hasBaseInfo()
- {
- return isset($this->base_info);
- }
- public function clearBaseInfo()
- {
- unset($this->base_info);
- }
-
- public function setBaseInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\UserBaseInfo::class);
- $this->base_info = $var;
- return $this;
- }
- }
|