]> git.basschouten.com Git - openhab-addons.git/blob
740dd5b664b756a27d275cf22d9da0262b1c0f12
[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.draytonwiser.internal.model;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * @author Andrew Schofield - Initial contribution
19  */
20 public class HotWaterDTO {
21
22     @SerializedName("id")
23     private Integer id;
24     private String overrideType;
25     private String mode;
26     private String waterHeatingState;
27     private String hotWaterRelayState;
28     private Integer overrideTimeoutUnixTime;
29
30     public Integer getId() {
31         return id;
32     }
33
34     public String getOverrideType() {
35         return overrideType;
36     }
37
38     public String getMode() {
39         return mode;
40     }
41
42     public String getWaterHeatingState() {
43         return waterHeatingState;
44     }
45
46     public String getHotWaterRelayState() {
47         return hotWaterRelayState;
48     }
49
50     public Integer getOverrideTimeoutUnixTime() {
51         return overrideTimeoutUnixTime;
52     }
53 }