]> git.basschouten.com Git - openhab-addons.git/blob
e03122c398af6f635f138a1228cf3132411b3a42
[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 GetSystemStateListDTO {
27
28     @SerializedName("SystemId")
29     @Expose
30     private Integer systemId;
31     @SerializedName("GatewayState")
32     @Expose
33     private GatewayStateDTO gatewayState;
34     @SerializedName("AccessLevel")
35     @Expose
36     private Integer accessLevel;
37     @SerializedName("IsSystemShareDeleted")
38     @Expose
39     private Boolean isSystemShareDeleted;
40     @SerializedName("IsSystemShareRejected")
41     @Expose
42     private Boolean isSystemShareRejected;
43     @SerializedName("IsSystemDeleted")
44     @Expose
45     private Boolean isSystemDeleted;
46     @SerializedName("FirstActiveAlertCode")
47     @Expose
48     private Integer firstActiveAlertCode;
49
50     public Integer getSystemId() {
51         return systemId;
52     }
53
54     public void setSystemId(Integer systemId) {
55         this.systemId = systemId;
56     }
57
58     public GatewayStateDTO getGatewayState() {
59         return gatewayState;
60     }
61
62     public void setGatewayState(GatewayStateDTO gatewayState) {
63         this.gatewayState = gatewayState;
64     }
65
66     public Integer getAccessLevel() {
67         return accessLevel;
68     }
69
70     public void setAccessLevel(Integer accessLevel) {
71         this.accessLevel = accessLevel;
72     }
73
74     public Boolean getIsSystemShareDeleted() {
75         return isSystemShareDeleted;
76     }
77
78     public void setIsSystemShareDeleted(Boolean isSystemShareDeleted) {
79         this.isSystemShareDeleted = isSystemShareDeleted;
80     }
81
82     public Boolean getIsSystemShareRejected() {
83         return isSystemShareRejected;
84     }
85
86     public void setIsSystemShareRejected(Boolean isSystemShareRejected) {
87         this.isSystemShareRejected = isSystemShareRejected;
88     }
89
90     public Boolean getIsSystemDeleted() {
91         return isSystemDeleted;
92     }
93
94     public void setIsSystemDeleted(Boolean isSystemDeleted) {
95         this.isSystemDeleted = isSystemDeleted;
96     }
97
98     public Integer getFirstActiveAlertCode() {
99         return firstActiveAlertCode;
100     }
101
102     public void setFirstActiveAlertCode(Integer firstActiveAlertCode) {
103         this.firstActiveAlertCode = firstActiveAlertCode;
104     }
105 }