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.wolfsmartset.internal.dto;
15 import javax.annotation.Generated;
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
21 * generated with https://www.jsonschema2pojo.org/
23 * @author Bo Biene - Initial contribution
25 @Generated("jsonschema2pojo")
26 public class GetSystemStateListDTO {
28 @SerializedName("SystemId")
30 private Integer systemId;
31 @SerializedName("GatewayState")
33 private GatewayStateDTO gatewayState;
34 @SerializedName("AccessLevel")
36 private Integer accessLevel;
37 @SerializedName("IsSystemShareDeleted")
39 private Boolean isSystemShareDeleted;
40 @SerializedName("IsSystemShareRejected")
42 private Boolean isSystemShareRejected;
43 @SerializedName("IsSystemDeleted")
45 private Boolean isSystemDeleted;
46 @SerializedName("FirstActiveAlertCode")
48 private Integer firstActiveAlertCode;
50 public Integer getSystemId() {
54 public void setSystemId(Integer systemId) {
55 this.systemId = systemId;
58 public GatewayStateDTO getGatewayState() {
62 public void setGatewayState(GatewayStateDTO gatewayState) {
63 this.gatewayState = gatewayState;
66 public Integer getAccessLevel() {
70 public void setAccessLevel(Integer accessLevel) {
71 this.accessLevel = accessLevel;
74 public Boolean getIsSystemShareDeleted() {
75 return isSystemShareDeleted;
78 public void setIsSystemShareDeleted(Boolean isSystemShareDeleted) {
79 this.isSystemShareDeleted = isSystemShareDeleted;
82 public Boolean getIsSystemShareRejected() {
83 return isSystemShareRejected;
86 public void setIsSystemShareRejected(Boolean isSystemShareRejected) {
87 this.isSystemShareRejected = isSystemShareRejected;
90 public Boolean getIsSystemDeleted() {
91 return isSystemDeleted;
94 public void setIsSystemDeleted(Boolean isSystemDeleted) {
95 this.isSystemDeleted = isSystemDeleted;
98 public Integer getFirstActiveAlertCode() {
99 return firstActiveAlertCode;
102 public void setFirstActiveAlertCode(Integer firstActiveAlertCode) {
103 this.firstActiveAlertCode = firstActiveAlertCode;