proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage
*/
class BatteryMileage extends \Google\Protobuf\Internal\Message
{
/**
* 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
*
* Generated from protobuf field int32 begin = 1;
*/
protected $begin = 0;
/**
* 电池数量
*
* Generated from protobuf field int32 data = 2;
*/
protected $data = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $begin
* 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
* @type int $data
* 电池数量
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\LargeScreenData::initOnce();
parent::__construct($data);
}
/**
* 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
*
* Generated from protobuf field int32 begin = 1;
* @return int
*/
public function getBegin()
{
return $this->begin;
}
/**
* 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
*
* Generated from protobuf field int32 begin = 1;
* @param int $var
* @return $this
*/
public function setBegin($var)
{
GPBUtil::checkInt32($var);
$this->begin = $var;
return $this;
}
/**
* 电池数量
*
* Generated from protobuf field int32 data = 2;
* @return int
*/
public function getData()
{
return $this->data;
}
/**
* 电池数量
*
* Generated from protobuf field int32 data = 2;
* @param int $var
* @return $this
*/
public function setData($var)
{
GPBUtil::checkInt32($var);
$this->data = $var;
return $this;
}
}