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.ecobee.internal.dto.thermostat;
16 * The {@link HouseDetailsDTO} contains contains the information about the
17 * house the thermostat is installed in.
19 * @author Mark Hilbush - Initial contribution
21 public class HouseDetailsDTO {
23 * The style of house. Values: other, apartment, condominium, detached,
24 * loft, multiPlex, rowHouse, semiDetached, townhouse, and 0 for unknown.
29 * The size of the house in square feet.
34 * The number of floors or levels in the house.
36 public Integer numberOfFloors;
39 * The number of rooms in the house.
41 public Integer numberOfRooms;
44 * The number of occupants living in the house.
46 public Integer numberOfOccupants;
49 * The age of house in years.
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.
59 public Integer windowEfficiency;