]> git.basschouten.com Git - openhab-addons.git/blob
21767b4b55ecffd8f58bfd4afb570645b7ab70c3
[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.wlanthermo.internal.api.esp32.dto.settings;
14
15 import com.google.gson.annotations.Expose;
16 import com.google.gson.annotations.SerializedName;
17
18 /**
19  * This DTO is used to parse the JSON
20  * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
21  *
22  * @author Christian Schlipp - Initial contribution
23  */
24 public class Pid {
25
26     @SerializedName("name")
27     @Expose
28     private String name;
29     @SerializedName("id")
30     @Expose
31     private Integer id;
32     @SerializedName("aktor")
33     @Expose
34     private Integer aktor;
35     @SerializedName("Kp")
36     @Expose
37     private Double kp;
38     @SerializedName("Ki")
39     @Expose
40     private Double ki;
41     @SerializedName("Kd")
42     @Expose
43     private Double kd;
44     @SerializedName("DCmmin")
45     @Expose
46     private Double dCmmin;
47     @SerializedName("DCmmax")
48     @Expose
49     private Double dCmmax;
50     @SerializedName("opl")
51     @Expose
52     private Integer opl;
53     @SerializedName("SPmin")
54     @Expose
55     private Double sPmin;
56     @SerializedName("SPmax")
57     @Expose
58     private Double sPmax;
59     @SerializedName("link")
60     @Expose
61     private Integer link;
62     @SerializedName("tune")
63     @Expose
64     private Integer tune;
65     @SerializedName("jp")
66     @Expose
67     private Integer jp;
68
69     public String getName() {
70         return name;
71     }
72
73     public void setName(String name) {
74         this.name = name;
75     }
76
77     public Integer getId() {
78         return id;
79     }
80
81     public void setId(Integer id) {
82         this.id = id;
83     }
84
85     public Integer getAktor() {
86         return aktor;
87     }
88
89     public void setAktor(Integer aktor) {
90         this.aktor = aktor;
91     }
92
93     public Double getKp() {
94         return kp;
95     }
96
97     public void setKp(Double kp) {
98         this.kp = kp;
99     }
100
101     public Double getKi() {
102         return ki;
103     }
104
105     public void setKi(Double ki) {
106         this.ki = ki;
107     }
108
109     public Double getKd() {
110         return kd;
111     }
112
113     public void setKd(Double kd) {
114         this.kd = kd;
115     }
116
117     public Double getDCmmin() {
118         return dCmmin;
119     }
120
121     public void setDCmmin(Double dCmmin) {
122         this.dCmmin = dCmmin;
123     }
124
125     public Double getDCmmax() {
126         return dCmmax;
127     }
128
129     public void setDCmmax(Double dCmmax) {
130         this.dCmmax = dCmmax;
131     }
132
133     public Integer getOpl() {
134         return opl;
135     }
136
137     public void setOpl(Integer opl) {
138         this.opl = opl;
139     }
140
141     public Double getSPmin() {
142         return sPmin;
143     }
144
145     public void setSPmin(Double sPmin) {
146         this.sPmin = sPmin;
147     }
148
149     public Double getSPmax() {
150         return sPmax;
151     }
152
153     public void setSPmax(Double sPmax) {
154         this.sPmax = sPmax;
155     }
156
157     public Integer getLink() {
158         return link;
159     }
160
161     public void setLink(Integer link) {
162         this.link = link;
163     }
164
165     public Integer getTune() {
166         return tune;
167     }
168
169     public void setTune(Integer tune) {
170         this.tune = tune;
171     }
172
173     public Integer getJp() {
174         return jp;
175     }
176
177     public void setJp(Integer jp) {
178         this.jp = jp;
179     }
180 }