CloseAreaReq.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/CityPackage.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.CloseAreaReq</code>
  11. */
  12. class CloseAreaReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 地区CODE列表
  16. *
  17. * Generated from protobuf field <code>repeated string area_ids = 1;</code>
  18. */
  19. private $area_ids;
  20. /**
  21. * Constructor.
  22. *
  23. * @param array $data {
  24. * Optional. Data for populating the Message object.
  25. *
  26. * @type array<string>|\Google\Protobuf\Internal\RepeatedField $area_ids
  27. * 地区CODE列表
  28. * }
  29. */
  30. public function __construct($data = NULL) {
  31. \GPBMetadata\Api\CityPackage::initOnce();
  32. parent::__construct($data);
  33. }
  34. /**
  35. * 地区CODE列表
  36. *
  37. * Generated from protobuf field <code>repeated string area_ids = 1;</code>
  38. * @return \Google\Protobuf\Internal\RepeatedField
  39. */
  40. public function getAreaIds()
  41. {
  42. return $this->area_ids;
  43. }
  44. /**
  45. * 地区CODE列表
  46. *
  47. * Generated from protobuf field <code>repeated string area_ids = 1;</code>
  48. * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
  49. * @return $this
  50. */
  51. public function setAreaIds($var)
  52. {
  53. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
  54. $this->area_ids = $arr;
  55. return $this;
  56. }
  57. }