]> git.basschouten.com Git - openhab-addons.git/blob
635a6e4767cf3b69a3ae559c06f195fa7295076c
[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 ManagementDTO} contains information about the management company
17  * the thermostat belongs to. The Management object is read-only, it may be
18  * modified in the web portal.
19  *
20  * @author Mark Hilbush - Initial contribution
21  */
22 public class ManagementDTO {
23     /*
24      * The administrative contact name.
25      */
26     public String administrativeContact;
27
28     /*
29      * The billing contact name.
30      */
31     public String billingContact;
32
33     /*
34      * The company name.
35      */
36     public String name;
37
38     /*
39      * The phone number.
40      */
41     public String phone;
42
43     /*
44      * The contact email address.
45      */
46     public String email;
47
48     /*
49      * The company web site.
50      */
51     public String web;
52
53     /*
54      * Whether to show management alerts on the thermostat.
55      */
56     public Boolean showAlertIdt;
57
58     /*
59      * Whether to show management alerts in the web portal.
60      */
61     public Boolean showAlertWeb;
62 }