]> git.basschouten.com Git - openhab-addons.git/blob
ec65792e001e9e259a510f918cf21ac48351a5f6
[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 CustomerDetailsResponse} class models the CustomerDetails response message
19  *
20  * @author Dan Cunningham - Initial contribution
21  */
22 public class CustomerDetailsResponse extends Response {
23
24     public BocTopologyDesired bocTopologyDesired;
25
26     public BocTopologyActual bocTopologyActual;
27
28     public List<Controller> controllers;
29
30     public String currentController;
31
32     public Boolean isBoc;
33
34     public Integer tandc;
35
36     public Integer controllerId;
37
38     public Integer customerId;
39
40     public String sessionId;
41
42     public String hardwareVersion;
43
44     public Integer deviceId;
45
46     public Integer tandcVersion;
47
48     public Features features;
49 }