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.onecall;
15 import java.util.List;
17 import org.openhab.binding.openweathermap.internal.dto.forecast.daily.FeelsLikeTemp;
18 import org.openhab.binding.openweathermap.internal.dto.forecast.daily.Temp;
20 import com.google.gson.annotations.SerializedName;
23 * Holds the data from the <code>daily</code> object of the JSON response of the One Call APIs.
25 * @author Wolfgang Klimt - Initial contribution
32 @SerializedName("feels_like")
33 private FeelsLikeTemp feelsLikeTemp;
36 @SerializedName("dew_point")
37 private double dewPoint;
38 @SerializedName("wind_speed")
39 private double windSpeed;
40 @SerializedName("wind_deg")
42 @SerializedName("wind_gust")
43 private double windGust;
44 private List<Weather> weather = null;
47 private int visibility;
56 public int getSunrise() {
60 public int getSunset() {
64 public Temp getTemp() {
68 public FeelsLikeTemp getFeelsLike() {
72 public int getPressure() {
76 public int getHumidity() {
80 public double getDewPoint() {
84 public double getWindSpeed() {
88 public int getWindDeg() {
92 public double getWindGust() {
96 public List<Weather> getWeather() {
100 public int getClouds() {
104 public double getPop() {
108 public double getRain() {
112 public double getUvi() {
116 public int getVisibility() {
120 public double getSnow() {