2 * Copyright (c) 2010-2024 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.hourly;
15 import org.eclipse.jdt.annotation.Nullable;
17 import com.google.gson.annotations.SerializedName;
20 * Generated Plain Old Java Objects class for {@link Main} from JSON.
22 * @author Christoph Weitkamp - Initial contribution
26 @SerializedName("feels_like")
27 private @Nullable Double feelsLikeTemp;
28 @SerializedName("temp_min")
29 private Double tempMin;
30 @SerializedName("temp_max")
31 private Double tempMax;
32 private Double pressure;
33 @SerializedName("sea_level")
34 private Double seaLevel;
35 @SerializedName("grnd_level")
36 private Double grndLevel;
37 private Integer humidity;
38 @SerializedName("temp_kf")
39 private Integer tempKf;
41 public Double getTemp() {
45 public void setTemp(Double temp) {
49 public @Nullable Double getFeelsLikeTemp() {
53 public void setFeelsLikeTemp(Double feelsLikeTemp) {
54 this.feelsLikeTemp = feelsLikeTemp;
57 public Double getTempMin() {
61 public void setTempMin(Double tempMin) {
62 this.tempMin = tempMin;
65 public Double getTempMax() {
69 public void setTempMax(Double tempMax) {
70 this.tempMax = tempMax;
73 public Double getPressure() {
77 public void setPressure(Double pressure) {
78 this.pressure = pressure;
81 public Double getSeaLevel() {
85 public void setSeaLevel(Double seaLevel) {
86 this.seaLevel = seaLevel;
89 public Double getGrndLevel() {
93 public void setGrndLevel(Double grndLevel) {
94 this.grndLevel = grndLevel;
97 public Integer getHumidity() {
101 public void setHumidity(Integer humidity) {
102 this.humidity = humidity;
105 public Integer getTempKf() {
109 public void setTempKf(Integer tempKf) {
110 this.tempKf = tempKf;