12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/CityPackage.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.AllAreaLevelListRes</code>
- */
- class AllAreaLevelListRes extends \Google\Protobuf\Internal\Message
- {
- /**
- * 省列表
- *
- * Generated from protobuf field <code>.proto.api.AreaLevelEnt list = 1;</code>
- */
- protected $list = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\AreaLevelEnt $list
- * 省列表
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\CityPackage::initOnce();
- parent::__construct($data);
- }
- /**
- * 省列表
- *
- * Generated from protobuf field <code>.proto.api.AreaLevelEnt list = 1;</code>
- * @return \Proto\Api\AreaLevelEnt|null
- */
- public function getList()
- {
- return $this->list;
- }
- public function hasList()
- {
- return isset($this->list);
- }
- public function clearList()
- {
- unset($this->list);
- }
- /**
- * 省列表
- *
- * Generated from protobuf field <code>.proto.api.AreaLevelEnt list = 1;</code>
- * @param \Proto\Api\AreaLevelEnt $var
- * @return $this
- */
- public function setList($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\AreaLevelEnt::class);
- $this->list = $var;
- return $this;
- }
- }
|