123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntArea.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.AreaLevelEnt</code>
- */
- class AreaLevelEnt extends \Google\Protobuf\Internal\Message
- {
- /**
- * 区域信息
- *
- * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
- */
- protected $area_info = null;
- /**
- * 子级区域
- *
- * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 2;</code>
- */
- private $children;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\AreaEnt $area_info
- * 区域信息
- * @type array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $children
- * 子级区域
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntArea::initOnce();
- parent::__construct($data);
- }
- /**
- * 区域信息
- *
- * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
- * @return \Proto\Api\AreaEnt|null
- */
- public function getAreaInfo()
- {
- return $this->area_info;
- }
- public function hasAreaInfo()
- {
- return isset($this->area_info);
- }
- public function clearAreaInfo()
- {
- unset($this->area_info);
- }
- /**
- * 区域信息
- *
- * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
- * @param \Proto\Api\AreaEnt $var
- * @return $this
- */
- public function setAreaInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\AreaEnt::class);
- $this->area_info = $var;
- return $this;
- }
- /**
- * 子级区域
- *
- * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 2;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getChildren()
- {
- return $this->children;
- }
- /**
- * 子级区域
- *
- * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 2;</code>
- * @param array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setChildren($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaLevelEnt::class);
- $this->children = $arr;
- return $this;
- }
- }
|