]> git.basschouten.com Git - openhab-addons.git/blob
ba314385d6fb1ca695788c12a02945f6bfc2ff95
[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 FeelsLikeTemp} from JSON.
17  *
18  * @author Christoph Weitkamp - Initial contribution
19  */
20 public class FeelsLikeTemp {
21     private Double day;
22     private Double night;
23     private Double eve;
24     private Double morn;
25
26     public Double getDay() {
27         return day;
28     }
29
30     public void setDay(Double day) {
31         this.day = day;
32     }
33
34     public Double getNight() {
35         return night;
36     }
37
38     public void setNight(Double night) {
39         this.night = night;
40     }
41
42     public Double getEve() {
43         return eve;
44     }
45
46     public void setEve(Double eve) {
47         this.eve = eve;
48     }
49
50     public Double getMorn() {
51         return morn;
52     }
53
54     public void setMorn(Double morn) {
55         this.morn = morn;
56     }
57 }