proto.api.GetBatteryInfoRes.Alarm
*/
class Alarm extends \Google\Protobuf\Internal\Message
{
/**
* 告警说明
*
* Generated from protobuf field string desc = 1;
*/
protected $desc = '';
/**
* 告警等级
*
* Generated from protobuf field int32 level = 2;
*/
protected $level = 0;
/**
* 告警时间
*
* Generated from protobuf field int64 alarm_time = 3;
*/
protected $alarm_time = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $desc
* 告警说明
* @type int $level
* 告警等级
* @type int|string $alarm_time
* 告警时间
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\LargeScreenData::initOnce();
parent::__construct($data);
}
/**
* 告警说明
*
* Generated from protobuf field string desc = 1;
* @return string
*/
public function getDesc()
{
return $this->desc;
}
/**
* 告警说明
*
* Generated from protobuf field string desc = 1;
* @param string $var
* @return $this
*/
public function setDesc($var)
{
GPBUtil::checkString($var, True);
$this->desc = $var;
return $this;
}
/**
* 告警等级
*
* Generated from protobuf field int32 level = 2;
* @return int
*/
public function getLevel()
{
return $this->level;
}
/**
* 告警等级
*
* Generated from protobuf field int32 level = 2;
* @param int $var
* @return $this
*/
public function setLevel($var)
{
GPBUtil::checkInt32($var);
$this->level = $var;
return $this;
}
/**
* 告警时间
*
* Generated from protobuf field int64 alarm_time = 3;
* @return int|string
*/
public function getAlarmTime()
{
return $this->alarm_time;
}
/**
* 告警时间
*
* Generated from protobuf field int64 alarm_time = 3;
* @param int|string $var
* @return $this
*/
public function setAlarmTime($var)
{
GPBUtil::checkInt64($var);
$this->alarm_time = $var;
return $this;
}
}