]> git.basschouten.com Git - openhab-addons.git/blob
14fa8b853d52fc96f5d202115c25c37e845dfed8
[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.wolfsmartset.internal.dto;
14
15 import javax.annotation.Generated;
16
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
19
20 /**
21  * generated with https://www.jsonschema2pojo.org/
22  * 
23  * @author Bo Biene - Initial contribution
24  */
25 @Generated("jsonschema2pojo")
26 public class GatewayStateDTO {
27
28     @SerializedName("GatewayId")
29     @Expose
30     private Integer gatewayId;
31     @SerializedName("IsOnline")
32     @Expose
33     private Boolean isOnline;
34     @SerializedName("GatewayOfflineCause")
35     @Expose
36     private Integer gatewayOfflineCause;
37     @SerializedName("IsLocked")
38     @Expose
39     private Boolean isLocked;
40     @SerializedName("IsDeleted")
41     @Expose
42     private Boolean isDeleted;
43     @SerializedName("IsBusy")
44     @Expose
45     private Boolean isBusy;
46     @SerializedName("ImageName")
47     @Expose
48     private String imageName;
49
50     public Integer getGatewayId() {
51         return gatewayId;
52     }
53
54     public void setGatewayId(Integer gatewayId) {
55         this.gatewayId = gatewayId;
56     }
57
58     public Boolean getIsOnline() {
59         return isOnline;
60     }
61
62     public void setIsOnline(Boolean isOnline) {
63         this.isOnline = isOnline;
64     }
65
66     public Integer getGatewayOfflineCause() {
67         return gatewayOfflineCause;
68     }
69
70     public void setGatewayOfflineCause(Integer gatewayOfflineCause) {
71         this.gatewayOfflineCause = gatewayOfflineCause;
72     }
73
74     public Boolean getIsLocked() {
75         return isLocked;
76     }
77
78     public void setIsLocked(Boolean isLocked) {
79         this.isLocked = isLocked;
80     }
81
82     public Boolean getIsDeleted() {
83         return isDeleted;
84     }
85
86     public void setIsDeleted(Boolean isDeleted) {
87         this.isDeleted = isDeleted;
88     }
89
90     public Boolean getIsBusy() {
91         return isBusy;
92     }
93
94     public void setIsBusy(Boolean isBusy) {
95         this.isBusy = isBusy;
96     }
97
98     public String getImageName() {
99         return imageName;
100     }
101
102     public void setImageName(String imageName) {
103         this.imageName = imageName;
104     }
105 }