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;
15 import org.openhab.binding.openweathermap.internal.dto.base.City;
16 import org.openhab.binding.openweathermap.internal.dto.forecast.daily.List;
19 * The {@link OpenWeatherMapJsonDailyForecastData} is the Java class used to map the JSON response to an OpenWeatherMap
22 * @author Christoph Weitkamp - Initial contribution
24 public class OpenWeatherMapJsonDailyForecastData {
27 private Double message;
29 private java.util.List<List> list;
31 public City getCity() {
35 public void setCity(City city) {
39 public String getCod() {
43 public void setCod(String cod) {
47 public Double getMessage() {
51 public void setMessage(Double message) {
52 this.message = message;
55 public Integer getCnt() {
59 public void setCnt(Integer cnt) {
63 public java.util.List<List> getList() {
67 public void setList(java.util.List<List> list) {