]> git.basschouten.com Git - openhab-addons.git/blob
8b1f45ecfe783b582eed7aa5138828a614ceabb0
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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 com.google.gson.annotations.Expose;
16 import com.google.gson.annotations.SerializedName;
17
18 /**
19  * generated with https://www.jsonschema2pojo.org/
20  * 
21  * @author Bo Biene - Initial contribution
22  */
23 public class ParameterDescriptorDTO {
24     @SerializedName("ValueId")
25     @Expose
26     public Long valueId;
27
28     @SerializedName("SortId")
29     @Expose
30     public Long sortId;
31
32     @SerializedName("SubBundleId")
33     @Expose
34     public Long subBundleId;
35
36     @SerializedName("ParameterId")
37     @Expose
38     public Long parameterId;
39
40     @SerializedName("IsReadOnly")
41     @Expose
42     public Boolean isReadOnly;
43
44     @SerializedName("NoDataPoint")
45     @Expose
46     public Boolean noDataPoint;
47
48     @SerializedName("IsExpertProtectable")
49     @Expose
50     public Boolean isExpertProtectable;
51
52     @SerializedName("Name")
53     @Expose
54     public String name;
55
56     @SerializedName("Group")
57     @Expose
58     public String group;
59
60     @SerializedName("ControlType")
61     @Expose
62     public Integer controlType;
63
64     @SerializedName("Value")
65     @Expose
66     public String value;
67
68     @SerializedName("ValueState")
69     @Expose
70     public Long valueState;
71
72     @SerializedName("HasDependentParameter")
73     @Expose
74     public Boolean hasDependentParameter;
75
76     @SerializedName("ProtGrp")
77     @Expose
78     public String protGrp;
79
80     @SerializedName("Unit")
81     @Expose
82     public String unit;
83
84     @SerializedName("Decimals")
85     @Expose
86     public Long decimals;
87
88     @SerializedName("MinValueCondition")
89     @Expose
90     public String minValueCondition;
91
92     @SerializedName("MaxValueCondition")
93     @Expose
94     public String maxValueCondition;
95
96     @SerializedName("MinValue")
97     @Expose
98     public Long minValue;
99
100     @SerializedName("MaxValue")
101     @Expose
102     public Long maxValue;
103
104     @SerializedName("StepWidth")
105     @Expose
106     public double stepWidth;
107
108     @SerializedName("NamePrefix")
109     @Expose
110     public String namePrefix;
111
112     @SerializedName("TurnOffValue")
113     @Expose
114     public Long turnOffValue;
115 }