123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.GetChargePileCountRes</code>
- */
- class GetChargePileCountRes extends \Google\Protobuf\Internal\Message
- {
- /**
- * 本周充电度数数组,下标0-6代表周一到周日
- *
- * Generated from protobuf field <code>repeated .proto.api.GetChargePileCountRes.ChargePileCount charge_pile_counts = 1;</code>
- */
- private $charge_pile_counts;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<\Proto\Api\GetChargePileCountRes\ChargePileCount>|\Google\Protobuf\Internal\RepeatedField $charge_pile_counts
- * 本周充电度数数组,下标0-6代表周一到周日
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 本周充电度数数组,下标0-6代表周一到周日
- *
- * Generated from protobuf field <code>repeated .proto.api.GetChargePileCountRes.ChargePileCount charge_pile_counts = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getChargePileCounts()
- {
- return $this->charge_pile_counts;
- }
- /**
- * 本周充电度数数组,下标0-6代表周一到周日
- *
- * Generated from protobuf field <code>repeated .proto.api.GetChargePileCountRes.ChargePileCount charge_pile_counts = 1;</code>
- * @param array<\Proto\Api\GetChargePileCountRes\ChargePileCount>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setChargePileCounts($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\GetChargePileCountRes\ChargePileCount::class);
- $this->charge_pile_counts = $arr;
- return $this;
- }
- }
|