GetChargePileCountRes.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.GetChargePileCountRes</code>
  11. */
  12. class GetChargePileCountRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 本周充电度数数组,下标0-6代表周一到周日
  16. *
  17. * Generated from protobuf field <code>repeated .proto.api.GetChargePileCountRes.ChargePileCount charge_pile_counts = 1;</code>
  18. */
  19. private $charge_pile_counts;
  20. /**
  21. * Constructor.
  22. *
  23. * @param array $data {
  24. * Optional. Data for populating the Message object.
  25. *
  26. * @type array<\Proto\Api\GetChargePileCountRes\ChargePileCount>|\Google\Protobuf\Internal\RepeatedField $charge_pile_counts
  27. * 本周充电度数数组,下标0-6代表周一到周日
  28. * }
  29. */
  30. public function __construct($data = NULL) {
  31. \GPBMetadata\Api\LargeScreenData::initOnce();
  32. parent::__construct($data);
  33. }
  34. /**
  35. * 本周充电度数数组,下标0-6代表周一到周日
  36. *
  37. * Generated from protobuf field <code>repeated .proto.api.GetChargePileCountRes.ChargePileCount charge_pile_counts = 1;</code>
  38. * @return \Google\Protobuf\Internal\RepeatedField
  39. */
  40. public function getChargePileCounts()
  41. {
  42. return $this->charge_pile_counts;
  43. }
  44. /**
  45. * 本周充电度数数组,下标0-6代表周一到周日
  46. *
  47. * Generated from protobuf field <code>repeated .proto.api.GetChargePileCountRes.ChargePileCount charge_pile_counts = 1;</code>
  48. * @param array<\Proto\Api\GetChargePileCountRes\ChargePileCount>|\Google\Protobuf\Internal\RepeatedField $var
  49. * @return $this
  50. */
  51. public function setChargePileCounts($var)
  52. {
  53. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\GetChargePileCountRes\ChargePileCount::class);
  54. $this->charge_pile_counts = $arr;
  55. return $this;
  56. }
  57. }