DetailPackageMicroSoftReq.php 1.6 KB

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