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 com.google.gson.annotations.Expose;
16 import com.google.gson.annotations.SerializedName;
19 * generated with https://www.jsonschema2pojo.org/
21 * @author Bo Biene - Initial contribution
23 public class ParameterDescriptorDTO {
24 @SerializedName("ValueId")
28 @SerializedName("SortId")
32 @SerializedName("SubBundleId")
34 public Long subBundleId;
36 @SerializedName("ParameterId")
38 public Long parameterId;
40 @SerializedName("IsReadOnly")
42 public Boolean isReadOnly;
44 @SerializedName("NoDataPoint")
46 public Boolean noDataPoint;
48 @SerializedName("IsExpertProtectable")
50 public Boolean isExpertProtectable;
52 @SerializedName("Name")
56 @SerializedName("Group")
60 @SerializedName("ControlType")
62 public Integer controlType;
64 @SerializedName("Value")
68 @SerializedName("ValueState")
70 public Long valueState;
72 @SerializedName("HasDependentParameter")
74 public Boolean hasDependentParameter;
76 @SerializedName("ProtGrp")
78 public String protGrp;
80 @SerializedName("Unit")
84 @SerializedName("Decimals")
88 @SerializedName("MinValueCondition")
90 public String minValueCondition;
92 @SerializedName("MaxValueCondition")
94 public String maxValueCondition;
96 @SerializedName("MinValue")
100 @SerializedName("MaxValue")
102 public Long maxValue;
104 @SerializedName("StepWidth")
106 public double stepWidth;
108 @SerializedName("NamePrefix")
110 public String namePrefix;
112 @SerializedName("TurnOffValue")
114 public Long turnOffValue;