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 java.util.List;
17 import javax.annotation.Generated;
19 import com.google.gson.annotations.Expose;
20 import com.google.gson.annotations.SerializedName;
23 * generated with https://www.jsonschema2pojo.org/
25 * @author Bo Biene - Initial contribution
27 @Generated("jsonschema2pojo")
28 public class GetGuiDescriptionForGatewayDTO {
30 @SerializedName("MenuItems")
32 private List<MenuItemDTO> menuItems = null;
33 @SerializedName("DynFaultMessageDevices")
35 private List<Object> dynFaultMessageDevices = null;
36 @SerializedName("SystemHasWRSClassicDevices")
38 private Boolean systemHasWRSClassicDevices;
40 public List<MenuItemDTO> getMenuItems() {
44 public void setMenuItems(List<MenuItemDTO> menuItems) {
45 this.menuItems = menuItems;
48 public List<Object> getDynFaultMessageDevices() {
49 return dynFaultMessageDevices;
52 public void setDynFaultMessageDevices(List<Object> dynFaultMessageDevices) {
53 this.dynFaultMessageDevices = dynFaultMessageDevices;
56 public Boolean getSystemHasWRSClassicDevices() {
57 return systemHasWRSClassicDevices;
60 public void setSystemHasWRSClassicDevices(Boolean systemHasWRSClassicDevices) {
61 this.systemHasWRSClassicDevices = systemHasWRSClassicDevices;