MeteoSystem/app/src/main/java/cc/pogoda/mobile/meteosystem/type/web/Trend.java

38 wiersze
859 B
Java
Czysty Zwykły widok Historia

2021-12-10 10:21:06 +00:00
package cc.pogoda.mobile.meteosystem.type.web;
public class Trend {
2021-01-28 21:13:00 +00:00
public long last_timestamp;
2021-02-06 20:58:07 +00:00
public String displayed_name;
2021-01-28 21:13:00 +00:00
public String current_temperature_qf;
2021-01-28 21:13:00 +00:00
public String current_qnh_qf;
2021-01-28 21:13:00 +00:00
public String current_humidity_qf;
2021-01-28 21:13:00 +00:00
public String current_wind_qf;
2021-01-28 21:13:00 +00:00
public TrendData temperature_trend;
2021-01-28 21:13:00 +00:00
public TrendData humidity_trend;
2021-01-28 21:13:00 +00:00
public TrendData pressure_trend;
2021-01-28 21:13:00 +00:00
public TrendData average_wind_speed_trend;
public TrendData maximum_wind_speed_trend;
public TrendData wind_direction_trend;
public Trend() {
2021-01-28 21:13:00 +00:00
temperature_trend = new TrendData();
humidity_trend = new TrendData();
pressure_trend = new TrendData();
average_wind_speed_trend = new TrendData();
maximum_wind_speed_trend = new TrendData();
wind_direction_trend = new TrendData();
}
}