]> git.basschouten.com Git - openhab-addons.git/blob
e14e6688b2604e40c06f69c104c8790b16b2dccf
[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.List;
16
17 /**
18  * The {@link Controller} class models a Hydrawise controller unit
19  *
20  * @author Dan Cunningham - Initial contribution
21  */
22 public class Controller {
23
24     public String name;
25
26     public Integer lastContact;
27
28     public String serialNumber;
29
30     public Integer controllerId;
31
32     public String swVersion;
33
34     public String hardware;
35
36     public Boolean isBoc;
37
38     public String address;
39
40     public String timezone;
41
42     public Integer deviceId;
43
44     public Object parentDeviceId;
45
46     public String image;
47
48     public String description;
49
50     public Integer customerId;
51
52     public Double latitude;
53
54     public Double longitude;
55
56     public String lastContactReadable;
57
58     public String status;
59
60     public String statusIcon;
61
62     public List<String> tags = null;
63 }