DetailPackageMicroSoftRes.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.DetailPackageMicroSoftRes</code>
  11. */
  12. class DetailPackageMicroSoftRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * Generated from protobuf field <code>.proto.api.CityPackageOrderEnt data = 1;</code>
  16. */
  17. protected $data = null;
  18. /**
  19. * Constructor.
  20. *
  21. * @param array $data {
  22. * Optional. Data for populating the Message object.
  23. *
  24. * @type \Proto\Api\CityPackageOrderEnt $data
  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>.proto.api.CityPackageOrderEnt data = 1;</code>
  33. * @return \Proto\Api\CityPackageOrderEnt|null
  34. */
  35. public function getData()
  36. {
  37. return $this->data;
  38. }
  39. public function hasData()
  40. {
  41. return isset($this->data);
  42. }
  43. public function clearData()
  44. {
  45. unset($this->data);
  46. }
  47. /**
  48. * Generated from protobuf field <code>.proto.api.CityPackageOrderEnt data = 1;</code>
  49. * @param \Proto\Api\CityPackageOrderEnt $var
  50. * @return $this
  51. */
  52. public function setData($var)
  53. {
  54. GPBUtil::checkMessage($var, \Proto\Api\CityPackageOrderEnt::class);
  55. $this->data = $var;
  56. return $this;
  57. }
  58. }