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.hydrawise.internal.api.local.dto;
15 import java.util.LinkedList;
16 import java.util.List;
19 * The {@link StatusScheduleResponse} class models the Status and Schedule response message
21 * @author Dan Cunningham - Initial contribution
23 public class StatusScheduleResponse extends LocalScheduleResponse {
25 public Integer controllerId;
27 public Integer customerId;
29 public Integer userId;
31 public Integer nextpoll;
33 public List<Sensor> sensors = new LinkedList<Sensor>();
35 public String message;
37 public String obsRain;
39 public String obsRainWeek;
41 public String obsMaxtemp;
43 public Integer obsRainUpgrade;
45 public String obsRainText;
47 public String obsCurrenttemp;
49 public String wateringTime;
51 public Integer waterSaving;
53 public String lastContact;
55 public List<Forecast> forecast = new LinkedList<Forecast>();
59 public String statusIcon;