proto.api.GetBatteryMileageAndCyclesRes */ class GetBatteryMileageAndCyclesRes extends \Google\Protobuf\Internal\Message { /** * 电池行驶里程数组 * * Generated from protobuf field repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1; */ private $mileage; /** * 电池循环次数数组 * * Generated from protobuf field .proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2; */ 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 repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getMileage() { return $this->mileage; } /** * 电池行驶里程数组 * * Generated from protobuf field repeated .proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage mileage = 1; * @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 .proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2; * @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 .proto.api.GetBatteryMileageAndCyclesRes.BatteryCycles cycle = 2; * @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; } }