]> git.basschouten.com Git - openhab-addons.git/blob
08b3662dff9a0008d09825fea625a9c64e9671b2
[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.hydrawise.internal.api.local.dto;
14
15 import java.util.LinkedList;
16 import java.util.List;
17
18 /**
19  * The {@link StatusScheduleResponse} class models the Status and Schedule response message
20  *
21  * @author Dan Cunningham - Initial contribution
22  */
23 public class StatusScheduleResponse extends LocalScheduleResponse {
24
25     public Integer controllerId;
26
27     public Integer customerId;
28
29     public Integer userId;
30
31     public Integer nextpoll;
32
33     public List<Sensor> sensors = new LinkedList<Sensor>();
34
35     public String message;
36
37     public String obsRain;
38
39     public String obsRainWeek;
40
41     public String obsMaxtemp;
42
43     public Integer obsRainUpgrade;
44
45     public String obsRainText;
46
47     public String obsCurrenttemp;
48
49     public String wateringTime;
50
51     public Integer waterSaving;
52
53     public String lastContact;
54
55     public List<Forecast> forecast = new LinkedList<Forecast>();
56
57     public String status;
58
59     public String statusIcon;
60 }