123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?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.GetBatteryMileageAndCyclesRes</code>
- */
- class GetBatteryMileageAndCyclesRes extends \Google\Protobuf\Internal\Message
- {
- /**
- * 电池行驶里程数组
- *
- * Generated from protobuf field <code>repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1;</code>
- */
- private $mileage;
- /**
- * 电池循环次数数组
- *
- * Generated from protobuf field <code>.proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2;</code>
- */
- protected $cycle = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<\Proto\Api\GetBatteryMileageAndCyclesRes\BatteryMileage>|\Google\Protobuf\Internal\RepeatedField $mileage
- * 电池行驶里程数组
- * @type \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles $cycle
- * 电池循环次数数组
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 电池行驶里程数组
- *
- * Generated from protobuf field <code>repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getMileage()
- {
- return $this->mileage;
- }
- /**
- * 电池行驶里程数组
- *
- * Generated from protobuf field <code>repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1;</code>
- * @param array<\Proto\Api\GetBatteryMileageAndCyclesRes\BatteryMileage>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setMileage($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryMileage::class);
- $this->mileage = $arr;
- return $this;
- }
- /**
- * 电池循环次数数组
- *
- * Generated from protobuf field <code>.proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2;</code>
- * @return \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles|null
- */
- public function getCycle()
- {
- return $this->cycle;
- }
- public function hasCycle()
- {
- return isset($this->cycle);
- }
- public function clearCycle()
- {
- unset($this->cycle);
- }
- /**
- * 电池循环次数数组
- *
- * Generated from protobuf field <code>.proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2;</code>
- * @param \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles $var
- * @return $this
- */
- public function setCycle($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles::class);
- $this->cycle = $var;
- return $this;
- }
- }
|