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.wlanthermo.internal.api.esp32.dto.settings;
15 import com.google.gson.annotations.Expose;
16 import com.google.gson.annotations.SerializedName;
19 * This DTO is used to parse the JSON
20 * Class is auto-generated from JSON using http://www.jsonschema2pojo.org/
22 * @author Christian Schlipp - Initial contribution
26 @SerializedName("name")
32 @SerializedName("aktor")
34 private Integer aktor;
44 @SerializedName("DCmmin")
46 private Double dCmmin;
47 @SerializedName("DCmmax")
49 private Double dCmmax;
50 @SerializedName("opl")
53 @SerializedName("SPmin")
56 @SerializedName("SPmax")
59 @SerializedName("link")
62 @SerializedName("tune")
69 public String getName() {
73 public void setName(String name) {
77 public Integer getId() {
81 public void setId(Integer id) {
85 public Integer getAktor() {
89 public void setAktor(Integer aktor) {
93 public Double getKp() {
97 public void setKp(Double kp) {
101 public Double getKi() {
105 public void setKi(Double ki) {
109 public Double getKd() {
113 public void setKd(Double kd) {
117 public Double getDCmmin() {
121 public void setDCmmin(Double dCmmin) {
122 this.dCmmin = dCmmin;
125 public Double getDCmmax() {
129 public void setDCmmax(Double dCmmax) {
130 this.dCmmax = dCmmax;
133 public Integer getOpl() {
137 public void setOpl(Integer opl) {
141 public Double getSPmin() {
145 public void setSPmin(Double sPmin) {
149 public Double getSPmax() {
153 public void setSPmax(Double sPmax) {
157 public Integer getLink() {
161 public void setLink(Integer link) {
165 public Integer getTune() {
169 public void setTune(Integer tune) {
173 public Integer getJp() {
177 public void setJp(Integer jp) {