]> git.basschouten.com Git - openhab-addons.git/blob
d231476c00f619b29f95a6676aac132cc51cae77
[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 /**
16  * The {@link HouseDetailsDTO} contains contains the information about the
17  * house the thermostat is installed in.
18  *
19  * @author Mark Hilbush - Initial contribution
20  */
21 public class HouseDetailsDTO {
22     /*
23      * The style of house. Values: other, apartment, condominium, detached,
24      * loft, multiPlex, rowHouse, semiDetached, townhouse, and 0 for unknown.
25      */
26     public String style;
27
28     /*
29      * The size of the house in square feet.
30      */
31     public Integer size;
32
33     /*
34      * The number of floors or levels in the house.
35      */
36     public Integer numberOfFloors;
37
38     /*
39      * The number of rooms in the house.
40      */
41     public Integer numberOfRooms;
42
43     /*
44      * The number of occupants living in the house.
45      */
46     public Integer numberOfOccupants;
47
48     /*
49      * The age of house in years.
50      */
51     public Integer age;
52
53     /*
54      * This field defines the window efficiency of the house. Valid values
55      * are in the range 1 - 7. Changing the value of this field alters the
56      * settings the thermostat uses for the humidifier when in 'frost Control'
57      * mode. See the NOTE above before updating this value.
58      */
59     public Integer windowEfficiency;
60 }