GetBatteryMileageAndCyclesRes.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/LargeScreenData.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.GetBatteryMileageAndCyclesRes</code>
  11. */
  12. class GetBatteryMileageAndCyclesRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 电池行驶里程数组
  16. *
  17. * Generated from protobuf field <code>repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1;</code>
  18. */
  19. private $mileage;
  20. /**
  21. * 电池循环次数数组
  22. *
  23. * Generated from protobuf field <code>.proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2;</code>
  24. */
  25. protected $cycle = null;
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type array<\Proto\Api\GetBatteryMileageAndCyclesRes\BatteryMileage>|\Google\Protobuf\Internal\RepeatedField $mileage
  33. * 电池行驶里程数组
  34. * @type \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles $cycle
  35. * 电池循环次数数组
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\LargeScreenData::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 电池行驶里程数组
  44. *
  45. * Generated from protobuf field <code>repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1;</code>
  46. * @return \Google\Protobuf\Internal\RepeatedField
  47. */
  48. public function getMileage()
  49. {
  50. return $this->mileage;
  51. }
  52. /**
  53. * 电池行驶里程数组
  54. *
  55. * Generated from protobuf field <code>repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1;</code>
  56. * @param array<\Proto\Api\GetBatteryMileageAndCyclesRes\BatteryMileage>|\Google\Protobuf\Internal\RepeatedField $var
  57. * @return $this
  58. */
  59. public function setMileage($var)
  60. {
  61. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryMileage::class);
  62. $this->mileage = $arr;
  63. return $this;
  64. }
  65. /**
  66. * 电池循环次数数组
  67. *
  68. * Generated from protobuf field <code>.proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2;</code>
  69. * @return \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles|null
  70. */
  71. public function getCycle()
  72. {
  73. return $this->cycle;
  74. }
  75. public function hasCycle()
  76. {
  77. return isset($this->cycle);
  78. }
  79. public function clearCycle()
  80. {
  81. unset($this->cycle);
  82. }
  83. /**
  84. * 电池循环次数数组
  85. *
  86. * Generated from protobuf field <code>.proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2;</code>
  87. * @param \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles $var
  88. * @return $this
  89. */
  90. public function setCycle($var)
  91. {
  92. GPBUtil::checkMessage($var, \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles::class);
  93. $this->cycle = $var;
  94. return $this;
  95. }
  96. }