PackageAreaEnt.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCityPackage.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. * 套餐开通的地区
  11. *
  12. * Generated from protobuf message <code>proto.api.PackageAreaEnt</code>
  13. */
  14. class PackageAreaEnt extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 基本区县信息
  18. *
  19. * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
  20. */
  21. protected $area_info = null;
  22. /**
  23. * 开通状态
  24. *
  25. * Generated from protobuf field <code>.proto.api.YES_NO open_status = 2;</code>
  26. */
  27. protected $open_status = 0;
  28. /**
  29. * Constructor.
  30. *
  31. * @param array $data {
  32. * Optional. Data for populating the Message object.
  33. *
  34. * @type \Proto\Api\AreaEnt $area_info
  35. * 基本区县信息
  36. * @type int $open_status
  37. * 开通状态
  38. * }
  39. */
  40. public function __construct($data = NULL) {
  41. \GPBMetadata\Api\EntCityPackage::initOnce();
  42. parent::__construct($data);
  43. }
  44. /**
  45. * 基本区县信息
  46. *
  47. * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
  48. * @return \Proto\Api\AreaEnt|null
  49. */
  50. public function getAreaInfo()
  51. {
  52. return $this->area_info;
  53. }
  54. public function hasAreaInfo()
  55. {
  56. return isset($this->area_info);
  57. }
  58. public function clearAreaInfo()
  59. {
  60. unset($this->area_info);
  61. }
  62. /**
  63. * 基本区县信息
  64. *
  65. * Generated from protobuf field <code>.proto.api.AreaEnt area_info = 1;</code>
  66. * @param \Proto\Api\AreaEnt $var
  67. * @return $this
  68. */
  69. public function setAreaInfo($var)
  70. {
  71. GPBUtil::checkMessage($var, \Proto\Api\AreaEnt::class);
  72. $this->area_info = $var;
  73. return $this;
  74. }
  75. /**
  76. * 开通状态
  77. *
  78. * Generated from protobuf field <code>.proto.api.YES_NO open_status = 2;</code>
  79. * @return int
  80. */
  81. public function getOpenStatus()
  82. {
  83. return $this->open_status;
  84. }
  85. /**
  86. * 开通状态
  87. *
  88. * Generated from protobuf field <code>.proto.api.YES_NO open_status = 2;</code>
  89. * @param int $var
  90. * @return $this
  91. */
  92. public function setOpenStatus($var)
  93. {
  94. GPBUtil::checkEnum($var, \Proto\Api\YES_NO::class);
  95. $this->open_status = $var;
  96. return $this;
  97. }
  98. }