]> git.basschouten.com Git - openhab-addons.git/blob
cf4203fb65127c0a03bdbb8fcfd609d978980341
[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 java.util.List;
16
17 import javax.annotation.Generated;
18
19 import com.google.gson.annotations.Expose;
20 import com.google.gson.annotations.SerializedName;
21
22 /**
23  * generated with https://www.jsonschema2pojo.org/
24  * 
25  * @author Bo Biene - Initial contribution
26  */
27 @Generated("jsonschema2pojo")
28 public class GetGuiDescriptionForGatewayDTO {
29
30     @SerializedName("MenuItems")
31     @Expose
32     private List<MenuItemDTO> menuItems = null;
33     @SerializedName("DynFaultMessageDevices")
34     @Expose
35     private List<Object> dynFaultMessageDevices = null;
36     @SerializedName("SystemHasWRSClassicDevices")
37     @Expose
38     private Boolean systemHasWRSClassicDevices;
39
40     public List<MenuItemDTO> getMenuItems() {
41         return menuItems;
42     }
43
44     public void setMenuItems(List<MenuItemDTO> menuItems) {
45         this.menuItems = menuItems;
46     }
47
48     public List<Object> getDynFaultMessageDevices() {
49         return dynFaultMessageDevices;
50     }
51
52     public void setDynFaultMessageDevices(List<Object> dynFaultMessageDevices) {
53         this.dynFaultMessageDevices = dynFaultMessageDevices;
54     }
55
56     public Boolean getSystemHasWRSClassicDevices() {
57         return systemHasWRSClassicDevices;
58     }
59
60     public void setSystemHasWRSClassicDevices(Boolean systemHasWRSClassicDevices) {
61         this.systemHasWRSClassicDevices = systemHasWRSClassicDevices;
62     }
63 }