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 javax.annotation.Generated;
17 import com.google.gson.annotations.Expose;
18 import com.google.gson.annotations.SerializedName;
21 * generated with https://www.jsonschema2pojo.org/
23 * @author Bo Biene - Initial contribution
25 @Generated("jsonschema2pojo")
26 public class CurrentMessageDTO {
31 @SerializedName("ErrorCode")
33 private Integer errorCode;
34 @SerializedName("Description")
36 private String description;
37 @SerializedName("OccurTimeLocal")
39 private String occurTimeLocal;
40 @SerializedName("Active")
42 private Boolean active;
43 @SerializedName("Index")
45 private Integer index;
46 @SerializedName("Device")
48 private String device;
50 public Integer getId() {
54 public void setId(Integer id) {
58 public Integer getErrorCode() {
62 public void setErrorCode(Integer errorCode) {
63 this.errorCode = errorCode;
66 public String getDescription() {
70 public void setDescription(String description) {
71 this.description = description;
74 public String getOccurTimeLocal() {
75 return occurTimeLocal;
78 public void setOccurTimeLocal(String occurTimeLocal) {
79 this.occurTimeLocal = occurTimeLocal;
82 public Boolean getActive() {
86 public void setActive(Boolean active) {
90 public Integer getIndex() {
94 public void setIndex(Integer index) {
98 public String getDevice() {
102 public void setDevice(String device) {
103 this.device = device;