]> git.basschouten.com Git - openhab-addons.git/blob
5121465db12e08d6e8cbcb73929c59c8fcf507b8
[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 SubMenuEntryDTO {
29
30     @SerializedName("Name")
31     @Expose
32     private String name;
33     @SerializedName("SubMenuEntries")
34     @Expose
35     private List<Object> subMenuEntries = null;
36     @SerializedName("ParameterNode")
37     @Expose
38     private Boolean parameterNode;
39     @SerializedName("ImageName")
40     @Expose
41     private String imageName;
42     @SerializedName("TabViews")
43     @Expose
44     private List<MenuItemTabViewDTO> tabViews = null;
45
46     public String getName() {
47         return name;
48     }
49
50     public void setName(String name) {
51         this.name = name;
52     }
53
54     public List<Object> getSubMenuEntries() {
55         return subMenuEntries;
56     }
57
58     public void setSubMenuEntries(List<Object> subMenuEntries) {
59         this.subMenuEntries = subMenuEntries;
60     }
61
62     public Boolean getParameterNode() {
63         return parameterNode;
64     }
65
66     public void setParameterNode(Boolean parameterNode) {
67         this.parameterNode = parameterNode;
68     }
69
70     public String getImageName() {
71         return imageName;
72     }
73
74     public void setImageName(String imageName) {
75         this.imageName = imageName;
76     }
77
78     public List<MenuItemTabViewDTO> getTabViews() {
79         return tabViews;
80     }
81
82     public void setTabViews(List<MenuItemTabViewDTO> tabViews) {
83         this.tabViews = tabViews;
84     }
85 }