2 * Copyright (c) 2010-2021 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.openweathermap.internal.dto.forecast.daily;
15 import org.eclipse.jdt.annotation.Nullable;
16 import org.openhab.binding.openweathermap.internal.dto.base.Weather;
18 import com.google.gson.annotations.SerializedName;
21 * Generated Plain Old Java Objects class for {@link List} from JSON.
23 * @author Christoph Weitkamp - Initial contribution
28 @SerializedName("feels_like")
29 private @Nullable FeelsLikeTemp feelsLikeTemp;
30 private Double pressure;
31 private Integer humidity;
32 private java.util.List<Weather> weather;
35 private @Nullable Double gust;
36 private Integer clouds;
37 private @Nullable Double rain;
38 private @Nullable Double snow;
40 public Integer getDt() {
44 public void setDt(Integer dt) {
48 public Temp getTemp() {
52 public void setTemp(Temp temp) {
56 public @Nullable FeelsLikeTemp getFeelsLikeTemp() {
60 public void setFeelsLikeTemp(FeelsLikeTemp feelsLikeTemp) {
61 this.feelsLikeTemp = feelsLikeTemp;
64 public Double getPressure() {
68 public void setPressure(Double pressure) {
69 this.pressure = pressure;
72 public Integer getHumidity() {
76 public void setHumidity(Integer humidity) {
77 this.humidity = humidity;
80 public java.util.List<Weather> getWeather() {
84 public void setWeather(java.util.List<Weather> weather) {
85 this.weather = weather;
88 public Double getSpeed() {
92 public void setSpeed(Double speed) {
96 public Double getDeg() {
100 public void setDeg(Double deg) {
104 public @Nullable Double getGust() {
108 public void setGust(Double gust) {
112 public Integer getClouds() {
116 public void setClouds(Integer clouds) {
117 this.clouds = clouds;
120 public @Nullable Double getRain() {
124 public void setRain(Double rain) {
128 public @Nullable Double getSnow() {
132 public void setSnow(Double snow) {