]> git.basschouten.com Git - openhab-addons.git/blob
9829562dffa58dfc5de937d47ebbdced91b28e66
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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 ElectricityTierDTO} is responsible for
17  *
18  * @author Mark Hilbush - Initial contribution
19  */
20 public class ElectricityTierDTO {
21
22     /*
23      * The tier name as defined by the Utility. May be an empty string if
24      * the tier is undefined or the usage falls outside the defined tiers.
25      */
26     public String name;
27
28     /*
29      * The last daily consumption reading collected. The reading format and precision
30      * is to three decimal places in kWh.
31      */
32     public String consumption;
33
34     /*
35      * The daily cumulative tier cost in dollars if defined by the Utility. May
36      * be an empty string if undefined.
37      */
38     public String cost;
39 }