]> git.basschouten.com Git - openhab-addons.git/blob
4f9b56e70ca418004dc981eb77c3e174bbb0af82
[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.ecobee.internal.dto.thermostat;
14
15 import java.util.List;
16
17 /**
18  * The {@link DeviceDTO} represents a device attached to the thermostat. Devices may
19  * not be modified remotely, all changes must occur on the thermostat.
20  *
21  * @author Mark Hilbush - Initial contribution
22  */
23 public class DeviceDTO {
24
25     /*
26      * A unique ID for the device.
27      */
28     public Integer deviceId;
29
30     /*
31      * The user supplied device name.
32      */
33     public String name;
34
35     /*
36      * The list of Sensor Objects associated with the device.
37      */
38     public List<Object> sensors;
39
40     /*
41      * The list of Output Objects associated with the device.
42      */
43     public List<Object> outputs;
44 }