]> git.basschouten.com Git - openhab-addons.git/blob
e9d16f52c5f776861bfea39abb76c33c0cd310a1
[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.forecast.daily;
14
15 /**
16  * Generated Plain Old Java Objects class for {@link Temp} from JSON.
17  *
18  * @author Christoph Weitkamp - Initial contribution
19  */
20 public class Temp {
21     private Double day;
22     private Double min;
23     private Double max;
24     private Double night;
25     private Double eve;
26     private Double morn;
27
28     public Double getDay() {
29         return day;
30     }
31
32     public void setDay(Double day) {
33         this.day = day;
34     }
35
36     public Double getMin() {
37         return min;
38     }
39
40     public void setMin(Double min) {
41         this.min = min;
42     }
43
44     public Double getMax() {
45         return max;
46     }
47
48     public void setMax(Double max) {
49         this.max = max;
50     }
51
52     public Double getNight() {
53         return night;
54     }
55
56     public void setNight(Double night) {
57         this.night = night;
58     }
59
60     public Double getEve() {
61         return eve;
62     }
63
64     public void setEve(Double eve) {
65         this.eve = eve;
66     }
67
68     public Double getMorn() {
69         return morn;
70     }
71
72     public void setMorn(Double morn) {
73         this.morn = morn;
74     }
75 }