]> git.basschouten.com Git - openhab-addons.git/blob
c9351edc84177ea5776c97aba11ba110253feb8c
[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.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 HistoryMessageDTO {
27
28     @SerializedName("Id")
29     @Expose
30     private Integer id;
31     @SerializedName("ErrorCode")
32     @Expose
33     private Integer errorCode;
34     @SerializedName("Description")
35     @Expose
36     private String description;
37     @SerializedName("OccurTimeLocal")
38     @Expose
39     private String occurTimeLocal;
40     @SerializedName("Active")
41     @Expose
42     private Boolean active;
43     @SerializedName("Index")
44     @Expose
45     private Integer index;
46     @SerializedName("Device")
47     @Expose
48     private String device;
49
50     public Integer getId() {
51         return id;
52     }
53
54     public void setId(Integer id) {
55         this.id = id;
56     }
57
58     public Integer getErrorCode() {
59         return errorCode;
60     }
61
62     public void setErrorCode(Integer errorCode) {
63         this.errorCode = errorCode;
64     }
65
66     public String getDescription() {
67         return description;
68     }
69
70     public void setDescription(String description) {
71         this.description = description;
72     }
73
74     public String getOccurTimeLocal() {
75         return occurTimeLocal;
76     }
77
78     public void setOccurTimeLocal(String occurTimeLocal) {
79         this.occurTimeLocal = occurTimeLocal;
80     }
81
82     public Boolean getActive() {
83         return active;
84     }
85
86     public void setActive(Boolean active) {
87         this.active = active;
88     }
89
90     public Integer getIndex() {
91         return index;
92     }
93
94     public void setIndex(Integer index) {
95         this.index = index;
96     }
97
98     public String getDevice() {
99         return device;
100     }
101
102     public void setDevice(String device) {
103         this.device = device;
104     }
105 }