proto.api.GetChargePileCountRes.ChargePileCount
*/
class ChargePileCount extends \Google\Protobuf\Internal\Message
{
/**
* 周
*
* Generated from protobuf field string week = 1;
*/
protected $week = '';
/**
* 本周充电度数
*
* Generated from protobuf field int32 charge_pile_count = 2;
*/
protected $charge_pile_count = 0;
/**
* 上周充电度数
*
* Generated from protobuf field int32 last_charge_pile_count = 3;
*/
protected $last_charge_pile_count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $week
* 周
* @type int $charge_pile_count
* 本周充电度数
* @type int $last_charge_pile_count
* 上周充电度数
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\LargeScreenData::initOnce();
parent::__construct($data);
}
/**
* 周
*
* Generated from protobuf field string week = 1;
* @return string
*/
public function getWeek()
{
return $this->week;
}
/**
* 周
*
* Generated from protobuf field string week = 1;
* @param string $var
* @return $this
*/
public function setWeek($var)
{
GPBUtil::checkString($var, True);
$this->week = $var;
return $this;
}
/**
* 本周充电度数
*
* Generated from protobuf field int32 charge_pile_count = 2;
* @return int
*/
public function getChargePileCount()
{
return $this->charge_pile_count;
}
/**
* 本周充电度数
*
* Generated from protobuf field int32 charge_pile_count = 2;
* @param int $var
* @return $this
*/
public function setChargePileCount($var)
{
GPBUtil::checkInt32($var);
$this->charge_pile_count = $var;
return $this;
}
/**
* 上周充电度数
*
* Generated from protobuf field int32 last_charge_pile_count = 3;
* @return int
*/
public function getLastChargePileCount()
{
return $this->last_charge_pile_count;
}
/**
* 上周充电度数
*
* Generated from protobuf field int32 last_charge_pile_count = 3;
* @param int $var
* @return $this
*/
public function setLastChargePileCount($var)
{
GPBUtil::checkInt32($var);
$this->last_charge_pile_count = $var;
return $this;
}
}