2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.wlanthermo.internal.api.esp32.dto.settings;
15 import com.google.gson.annotations.Expose;
16 import com.google.gson.annotations.SerializedName;
19 * This DTO is used to parse the JSON
20 * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
22 * @author Christian Schlipp - Initial contribution
26 @SerializedName("PMQhost")
28 private String pMQhost;
29 @SerializedName("PMQport")
31 private Integer pMQport;
32 @SerializedName("PMQuser")
34 private String pMQuser;
35 @SerializedName("PMQpass")
37 private String pMQpass;
38 @SerializedName("PMQqos")
40 private Integer pMQqos;
41 @SerializedName("PMQon")
43 private Boolean pMQon;
44 @SerializedName("PMQint")
46 private Integer pMQint;
47 @SerializedName("CLon")
50 @SerializedName("CLtoken")
52 private String cLtoken;
53 @SerializedName("CLint")
55 private Integer cLint;
56 @SerializedName("CLurl")
60 public String getPMQhost() {
64 public void setPMQhost(String pMQhost) {
65 this.pMQhost = pMQhost;
68 public Integer getPMQport() {
72 public void setPMQport(Integer pMQport) {
73 this.pMQport = pMQport;
76 public String getPMQuser() {
80 public void setPMQuser(String pMQuser) {
81 this.pMQuser = pMQuser;
84 public String getPMQpass() {
88 public void setPMQpass(String pMQpass) {
89 this.pMQpass = pMQpass;
92 public Integer getPMQqos() {
96 public void setPMQqos(Integer pMQqos) {
100 public Boolean getPMQon() {
104 public void setPMQon(Boolean pMQon) {
108 public Integer getPMQint() {
112 public void setPMQint(Integer pMQint) {
113 this.pMQint = pMQint;
116 public Boolean getCLon() {
120 public void setCLon(Boolean cLon) {
124 public String getCLtoken() {
128 public void setCLtoken(String cLtoken) {
129 this.cLtoken = cLtoken;
132 public Integer getCLint() {
136 public void setCLint(Integer cLint) {
140 public String getCLurl() {
144 public void setCLurl(String cLurl) {