]> git.basschouten.com Git - openhab-addons.git/blob
a768b96d282ce4a64b6f7fcd105eca7bd4c3e6c0
[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 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 public class MenuItemTabViewDTO {
26     @SerializedName("IsExpertView")
27     @Expose
28     public Boolean isExpertView;
29
30     @SerializedName("TabName")
31     @Expose
32     public String tabName;
33
34     @SerializedName("GuiId")
35     @Expose
36     public Long guiId;
37
38     @SerializedName("BundleId")
39     @Expose
40     public Long bundleId;
41
42     @SerializedName("ParameterDescriptors")
43     @Expose
44     public List<ParameterDescriptorDTO> parameterDescriptors;
45
46     @SerializedName("ViewType")
47     @Expose
48     public Long viewType;
49
50     @SerializedName("SvgSchemaDeviceId")
51     @Expose
52     public Long svgSchemaDeviceId;
53 }