proto.api.EntBattery
*/
class EntBattery extends \Google\Protobuf\Internal\Message
{
/**
* 电池编号
*
* Generated from protobuf field string battery_sn = 1;
*/
protected $battery_sn = '';
/**
* 租赁方式
*
* Generated from protobuf field .proto.api.BATTERY_HIRE_TYPE battery_hire_type = 2;
*/
protected $battery_hire_type = 0;
/**
* 电池类型
*
* Generated from protobuf field string battery_type = 3;
*/
protected $battery_type = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $battery_sn
* 电池编号
* @type int $battery_hire_type
* 租赁方式
* @type string $battery_type
* 电池类型
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\EntBattery::initOnce();
parent::__construct($data);
}
/**
* 电池编号
*
* Generated from protobuf field string battery_sn = 1;
* @return string
*/
public function getBatterySn()
{
return $this->battery_sn;
}
/**
* 电池编号
*
* Generated from protobuf field string battery_sn = 1;
* @param string $var
* @return $this
*/
public function setBatterySn($var)
{
GPBUtil::checkString($var, True);
$this->battery_sn = $var;
return $this;
}
/**
* 租赁方式
*
* Generated from protobuf field .proto.api.BATTERY_HIRE_TYPE battery_hire_type = 2;
* @return int
*/
public function getBatteryHireType()
{
return $this->battery_hire_type;
}
/**
* 租赁方式
*
* Generated from protobuf field .proto.api.BATTERY_HIRE_TYPE battery_hire_type = 2;
* @param int $var
* @return $this
*/
public function setBatteryHireType($var)
{
GPBUtil::checkEnum($var, \Proto\Api\BATTERY_HIRE_TYPE::class);
$this->battery_hire_type = $var;
return $this;
}
/**
* 电池类型
*
* Generated from protobuf field string battery_type = 3;
* @return string
*/
public function getBatteryType()
{
return $this->battery_type;
}
/**
* 电池类型
*
* Generated from protobuf field string battery_type = 3;
* @param string $var
* @return $this
*/
public function setBatteryType($var)
{
GPBUtil::checkString($var, True);
$this->battery_type = $var;
return $this;
}
}