]> git.basschouten.com Git - openhab-addons.git/blob
52c01d4279fb1a42d52cc3b29fc5ba83310c75b2
[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 javax.annotation.Generated;
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 @Generated("jsonschema2pojo")
26 public class ValueDTO {
27
28     @SerializedName("ValueId")
29     @Expose
30     private Long valueId;
31     @SerializedName("Value")
32     @Expose
33     private String value;
34     @SerializedName("State")
35     @Expose
36     private Integer state;
37
38     public Long getValueId() {
39         return valueId;
40     }
41
42     public void setValueId(Long valueId) {
43         this.valueId = valueId;
44     }
45
46     public String getValue() {
47         return value;
48     }
49
50     public void setValue(String value) {
51         this.value = value;
52     }
53
54     public Integer getState() {
55         return state;
56     }
57
58     public void setState(Integer state) {
59         this.state = state;
60     }
61 }