]> git.basschouten.com Git - openhab-addons.git/blob
50fca40b30d98620dc97e4cdc955e79ecae312f3
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.weather;
14
15 /**
16  * Generated Plain Old Java Objects class for {@link Sys} from JSON.
17  *
18  * @author Christoph Weitkamp - Initial contribution
19  */
20 public class Sys {
21     private Integer type;
22     private Integer id;
23     private Double message;
24     private String country;
25     private Integer sunrise;
26     private Integer sunset;
27
28     public Integer getType() {
29         return type;
30     }
31
32     public void setType(Integer type) {
33         this.type = type;
34     }
35
36     public Integer getId() {
37         return id;
38     }
39
40     public void setId(Integer id) {
41         this.id = id;
42     }
43
44     public Double getMessage() {
45         return message;
46     }
47
48     public void setMessage(Double message) {
49         this.message = message;
50     }
51
52     public String getCountry() {
53         return country;
54     }
55
56     public void setCountry(String country) {
57         this.country = country;
58     }
59
60     public Integer getSunrise() {
61         return sunrise;
62     }
63
64     public void setSunrise(Integer sunrise) {
65         this.sunrise = sunrise;
66     }
67
68     public Integer getSunset() {
69         return sunset;
70     }
71
72     public void setSunset(Integer sunset) {
73         this.sunset = sunset;
74     }
75 }