]> git.basschouten.com Git - openhab-addons.git/blob
f15267258e398e2bdcf1955c30d0fc63365d4d45
[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 Iot {
25
26     @SerializedName("PMQhost")
27     @Expose
28     private String pMQhost;
29     @SerializedName("PMQport")
30     @Expose
31     private Integer pMQport;
32     @SerializedName("PMQuser")
33     @Expose
34     private String pMQuser;
35     @SerializedName("PMQpass")
36     @Expose
37     private String pMQpass;
38     @SerializedName("PMQqos")
39     @Expose
40     private Integer pMQqos;
41     @SerializedName("PMQon")
42     @Expose
43     private Boolean pMQon;
44     @SerializedName("PMQint")
45     @Expose
46     private Integer pMQint;
47     @SerializedName("CLon")
48     @Expose
49     private Boolean cLon;
50     @SerializedName("CLtoken")
51     @Expose
52     private String cLtoken;
53     @SerializedName("CLint")
54     @Expose
55     private Integer cLint;
56     @SerializedName("CLurl")
57     @Expose
58     private String cLurl;
59
60     public String getPMQhost() {
61         return pMQhost;
62     }
63
64     public void setPMQhost(String pMQhost) {
65         this.pMQhost = pMQhost;
66     }
67
68     public Integer getPMQport() {
69         return pMQport;
70     }
71
72     public void setPMQport(Integer pMQport) {
73         this.pMQport = pMQport;
74     }
75
76     public String getPMQuser() {
77         return pMQuser;
78     }
79
80     public void setPMQuser(String pMQuser) {
81         this.pMQuser = pMQuser;
82     }
83
84     public String getPMQpass() {
85         return pMQpass;
86     }
87
88     public void setPMQpass(String pMQpass) {
89         this.pMQpass = pMQpass;
90     }
91
92     public Integer getPMQqos() {
93         return pMQqos;
94     }
95
96     public void setPMQqos(Integer pMQqos) {
97         this.pMQqos = pMQqos;
98     }
99
100     public Boolean getPMQon() {
101         return pMQon;
102     }
103
104     public void setPMQon(Boolean pMQon) {
105         this.pMQon = pMQon;
106     }
107
108     public Integer getPMQint() {
109         return pMQint;
110     }
111
112     public void setPMQint(Integer pMQint) {
113         this.pMQint = pMQint;
114     }
115
116     public Boolean getCLon() {
117         return cLon;
118     }
119
120     public void setCLon(Boolean cLon) {
121         this.cLon = cLon;
122     }
123
124     public String getCLtoken() {
125         return cLtoken;
126     }
127
128     public void setCLtoken(String cLtoken) {
129         this.cLtoken = cLtoken;
130     }
131
132     public Integer getCLint() {
133         return cLint;
134     }
135
136     public void setCLint(Integer cLint) {
137         this.cLint = cLint;
138     }
139
140     public String getCLurl() {
141         return cLurl;
142     }
143
144     public void setCLurl(String cLurl) {
145         this.cLurl = cLurl;
146     }
147 }