]> git.basschouten.com Git - openhab-addons.git/blob
760a5b53e8c8a0290dd326c59630c7b6038f9f09
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.openweathermap.internal.dto;
14
15 import org.openhab.binding.openweathermap.internal.dto.base.City;
16 import org.openhab.binding.openweathermap.internal.dto.forecast.daily.List;
17
18 /**
19  * The {@link OpenWeatherMapJsonDailyForecastData} is the Java class used to map the JSON response to an OpenWeatherMap
20  * request.
21  *
22  * @author Christoph Weitkamp - Initial contribution
23  */
24 public class OpenWeatherMapJsonDailyForecastData {
25     private City city;
26     private String cod;
27     private Double message;
28     private Integer cnt;
29     private java.util.List<List> list;
30
31     public City getCity() {
32         return city;
33     }
34
35     public void setCity(City city) {
36         this.city = city;
37     }
38
39     public String getCod() {
40         return cod;
41     }
42
43     public void setCod(String cod) {
44         this.cod = cod;
45     }
46
47     public Double getMessage() {
48         return message;
49     }
50
51     public void setMessage(Double message) {
52         this.message = message;
53     }
54
55     public Integer getCnt() {
56         return cnt;
57     }
58
59     public void setCnt(Integer cnt) {
60         this.cnt = cnt;
61     }
62
63     public java.util.List<List> getList() {
64         return list;
65     }
66
67     public void setList(java.util.List<List> list) {
68         this.list = list;
69     }
70 }