AreaLevelEnt.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntArea.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * Generated from protobuf message <code>proto.api.AreaLevelEnt</code>
  11. */
  12. class AreaLevelEnt extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 区域信息
  16. *
  17. * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
  18. */
  19. protected $area_info = null;
  20. /**
  21. * 子级区域
  22. *
  23. * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 2;</code>
  24. */
  25. private $children;
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type \Proto\Api\AreaEnt $area_info
  33. * 区域信息
  34. * @type array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $children
  35. * 子级区域
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\EntArea::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 区域信息
  44. *
  45. * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
  46. * @return \Proto\Api\AreaEnt|null
  47. */
  48. public function getAreaInfo()
  49. {
  50. return $this->area_info;
  51. }
  52. public function hasAreaInfo()
  53. {
  54. return isset($this->area_info);
  55. }
  56. public function clearAreaInfo()
  57. {
  58. unset($this->area_info);
  59. }
  60. /**
  61. * 区域信息
  62. *
  63. * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
  64. * @param \Proto\Api\AreaEnt $var
  65. * @return $this
  66. */
  67. public function setAreaInfo($var)
  68. {
  69. GPBUtil::checkMessage($var, \Proto\Api\AreaEnt::class);
  70. $this->area_info = $var;
  71. return $this;
  72. }
  73. /**
  74. * 子级区域
  75. *
  76. * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 2;</code>
  77. * @return \Google\Protobuf\Internal\RepeatedField
  78. */
  79. public function getChildren()
  80. {
  81. return $this->children;
  82. }
  83. /**
  84. * 子级区域
  85. *
  86. * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 2;</code>
  87. * @param array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $var
  88. * @return $this
  89. */
  90. public function setChildren($var)
  91. {
  92. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaLevelEnt::class);
  93. $this->children = $arr;
  94. return $this;
  95. }
  96. }