]> git.basschouten.com Git - openhab-addons.git/blob
c1040b22a15ffc8f312e11e315a66dee6ef0bb1a
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.wlanthermo.internal.api.esp32.dto.settings;
14
15 import com.google.gson.annotations.Expose;
16 import com.google.gson.annotations.SerializedName;
17
18 /**
19  * This DTO is used to parse the JSON
20  * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
21  *
22  * @author Christian Schlipp - Initial contribution
23  */
24 public class System {
25
26     @SerializedName("time")
27     @Expose
28     private String time;
29     @SerializedName("unit")
30     @Expose
31     private String unit;
32     @SerializedName("ap")
33     @Expose
34     private String ap;
35     @SerializedName("host")
36     @Expose
37     private String host;
38     @SerializedName("language")
39     @Expose
40     private String language;
41     @SerializedName("version")
42     @Expose
43     private String version;
44     @SerializedName("getupdate")
45     @Expose
46     private String getupdate;
47     @SerializedName("autoupd")
48     @Expose
49     private Boolean autoupd;
50     @SerializedName("prerelease")
51     @Expose
52     private Boolean prerelease;
53     @SerializedName("hwversion")
54     @Expose
55     private String hwversion;
56
57     public String getTime() {
58         return time;
59     }
60
61     public void setTime(String time) {
62         this.time = time;
63     }
64
65     public String getUnit() {
66         return unit;
67     }
68
69     public void setUnit(String unit) {
70         this.unit = unit;
71     }
72
73     public String getAp() {
74         return ap;
75     }
76
77     public void setAp(String ap) {
78         this.ap = ap;
79     }
80
81     public String getHost() {
82         return host;
83     }
84
85     public void setHost(String host) {
86         this.host = host;
87     }
88
89     public String getLanguage() {
90         return language;
91     }
92
93     public void setLanguage(String language) {
94         this.language = language;
95     }
96
97     public String getVersion() {
98         return version;
99     }
100
101     public void setVersion(String version) {
102         this.version = version;
103     }
104
105     public String getGetupdate() {
106         return getupdate;
107     }
108
109     public void setGetupdate(String getupdate) {
110         this.getupdate = getupdate;
111     }
112
113     public Boolean getAutoupd() {
114         return autoupd;
115     }
116
117     public void setAutoupd(Boolean autoupd) {
118         this.autoupd = autoupd;
119     }
120
121     public Boolean getPrerelease() {
122         return prerelease;
123     }
124
125     public void setPrerelease(Boolean prerelease) {
126         this.prerelease = prerelease;
127     }
128
129     public String getHwversion() {
130         return hwversion;
131     }
132
133     public void setHwversion(String hwversion) {
134         this.hwversion = hwversion;
135     }
136 }