]> git.basschouten.com Git - openhab-addons.git/blob
8ff92bcd5c0ce1d9ca016e977c67c07d6243ee5d
[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 TechnicianDTO} contains information pertaining to the technician
17  * associated with a thermostat. The technician may not be modified through the API.
18  *
19  * @author Mark Hilbush - Initial contribution
20  */
21 public class TechnicianDTO {
22     /*
23      * The internal ecobee unique identifier for this contractor.
24      */
25     public String contractorRef;
26
27     /*
28      * The company name of the technician.
29      */
30     public String name;
31
32     /*
33      * The technician's contact phone number.
34      */
35     public String phone;
36
37     /*
38      * The technician's street address.
39      */
40     public String streetAddress;
41
42     /*
43      * The technician's city.
44      */
45     public String city;
46
47     /*
48      * The technician's State or Province.
49      */
50     public String provinceState;
51
52     /*
53      * The technician's country.
54      */
55     public String country;
56
57     /*
58      * The technician's ZIP or Postal Code.
59      */
60     public String postalCode;
61
62     /*
63      * The technician's email address.
64      */
65     public String email;
66
67     /*
68      * The technician's web site.
69      */
70     public String web;
71 }