123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api\GetBatteryMileageAndCyclesRes\BatteryCycles;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles.BatteryCyclesItem</code>
- */
- class BatteryCyclesItem extends \Google\Protobuf\Internal\Message
- {
- /**
- * 循环次数范围 起始值 0 (0-500) 500 (501-1000) 1000 (1001-1500) 1500 (1501-2000) 2000 (2001-2500) 2500 (2501 - 3000) 3000 (3001 - ∞)
- *
- * Generated from protobuf field <code>int32 begin = 1;</code>
- */
- protected $begin = 0;
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 data = 2;</code>
- */
- protected $data = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $begin
- * 循环次数范围 起始值 0 (0-500) 500 (501-1000) 1000 (1001-1500) 1500 (1501-2000) 2000 (2001-2500) 2500 (2501 - 3000) 3000 (3001 - ∞)
- * @type int $data
- * 电池数量
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 循环次数范围 起始值 0 (0-500) 500 (501-1000) 1000 (1001-1500) 1500 (1501-2000) 2000 (2001-2500) 2500 (2501 - 3000) 3000 (3001 - ∞)
- *
- * Generated from protobuf field <code>int32 begin = 1;</code>
- * @return int
- */
- public function getBegin()
- {
- return $this->begin;
- }
- /**
- * 循环次数范围 起始值 0 (0-500) 500 (501-1000) 1000 (1001-1500) 1500 (1501-2000) 2000 (2001-2500) 2500 (2501 - 3000) 3000 (3001 - ∞)
- *
- * Generated from protobuf field <code>int32 begin = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setBegin($var)
- {
- GPBUtil::checkInt32($var);
- $this->begin = $var;
- return $this;
- }
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 data = 2;</code>
- * @return int
- */
- public function getData()
- {
- return $this->data;
- }
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 data = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setData($var)
- {
- GPBUtil::checkInt32($var);
- $this->data = $var;
- return $this;
- }
- }
|