]> git.basschouten.com Git - openhab-addons.git/blob
b4258a942a089970f7a26b2caa4b4c0542d2b6db
[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 UtilityDTO} contains the Utility information the Thermostat belongs to.
17  * The utility may not be modified through the API.
18  *
19  * @author Mark Hilbush - Initial contribution
20  */
21 public class UtilityDTO {
22     /*
23      * The Utility company name.
24      */
25     public String name;
26
27     /*
28      * The Utility company contact phone number.
29      */
30     public String phone;
31
32     /*
33      * The Utility company email address.
34      */
35     public String email;
36
37     /*
38      * The Utility company web site.
39      */
40     public String web;
41 }