proto.api.GetAlarmListRes
*/
class GetAlarmListRes extends \Google\Protobuf\Internal\Message
{
/**
* 告警说明
*
* Generated from protobuf field string desc = 1;
*/
protected $desc = '';
/**
* 设备编号
*
* Generated from protobuf field string dev_id = 2;
*/
protected $dev_id = '';
/**
* 告警时间
*
* Generated from protobuf field int64 alarm_time = 3;
*/
protected $alarm_time = 0;
/**
* 经度
*
* Generated from protobuf field float longitude = 4;
*/
protected $longitude = 0.0;
/**
* 纬度
*
* Generated from protobuf field string latitude = 5;
*/
protected $latitude = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $desc
* 告警说明
* @type string $dev_id
* 设备编号
* @type int|string $alarm_time
* 告警时间
* @type float $longitude
* 经度
* @type string $latitude
* 纬度
* }
*/
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 string dev_id = 2;
* @return string
*/
public function getDevId()
{
return $this->dev_id;
}
/**
* 设备编号
*
* Generated from protobuf field string dev_id = 2;
* @param string $var
* @return $this
*/
public function setDevId($var)
{
GPBUtil::checkString($var, True);
$this->dev_id = $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;
}
/**
* 经度
*
* Generated from protobuf field float longitude = 4;
* @return float
*/
public function getLongitude()
{
return $this->longitude;
}
/**
* 经度
*
* Generated from protobuf field float longitude = 4;
* @param float $var
* @return $this
*/
public function setLongitude($var)
{
GPBUtil::checkFloat($var);
$this->longitude = $var;
return $this;
}
/**
* 纬度
*
* Generated from protobuf field string latitude = 5;
* @return string
*/
public function getLatitude()
{
return $this->latitude;
}
/**
* 纬度
*
* Generated from protobuf field string latitude = 5;
* @param string $var
* @return $this
*/
public function setLatitude($var)
{
GPBUtil::checkString($var, True);
$this->latitude = $var;
return $this;
}
}