]> git.basschouten.com Git - openhab-addons.git/blob
f729c8c096c96a30c26e90f7793b8f1099932105
[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.iaqualink.internal.api.dto;
14
15 /**
16  * Account Info Object
17  *
18  * @author Dan Cunningham - Initial contribution
19  *
20  */
21 public class AccountInfo {
22
23     private Integer id;
24
25     private String email;
26
27     private String createdAt;
28
29     private String updatedAt;
30
31     private Object timeZone;
32
33     private String firstName;
34
35     private String lastName;
36
37     private String address1;
38
39     private String address2;
40
41     private String city;
42
43     private String state;
44
45     private String postalCode;
46
47     private String country;
48
49     private String phone;
50
51     private Boolean optIn1;
52
53     private Boolean optIn2;
54
55     private String authenticationToken;
56
57     private String role;
58
59     private String sessionId;
60
61     public Integer getId() {
62         return id;
63     }
64
65     public void setId(Integer id) {
66         this.id = id;
67     }
68
69     public String getEmail() {
70         return email;
71     }
72
73     public void setEmail(String email) {
74         this.email = email;
75     }
76
77     public String getCreatedAt() {
78         return createdAt;
79     }
80
81     public void setCreatedAt(String createdAt) {
82         this.createdAt = createdAt;
83     }
84
85     public String getUpdatedAt() {
86         return updatedAt;
87     }
88
89     public void setUpdatedAt(String updatedAt) {
90         this.updatedAt = updatedAt;
91     }
92
93     public Object getTimeZone() {
94         return timeZone;
95     }
96
97     public void setTimeZone(Object timeZone) {
98         this.timeZone = timeZone;
99     }
100
101     public String getFirstName() {
102         return firstName;
103     }
104
105     public void setFirstName(String firstName) {
106         this.firstName = firstName;
107     }
108
109     public String getLastName() {
110         return lastName;
111     }
112
113     public void setLastName(String lastName) {
114         this.lastName = lastName;
115     }
116
117     public String getAddress1() {
118         return address1;
119     }
120
121     public void setAddress1(String address1) {
122         this.address1 = address1;
123     }
124
125     public String getAddress2() {
126         return address2;
127     }
128
129     public void setAddress2(String address2) {
130         this.address2 = address2;
131     }
132
133     public String getCity() {
134         return city;
135     }
136
137     public void setCity(String city) {
138         this.city = city;
139     }
140
141     public String getState() {
142         return state;
143     }
144
145     public void setState(String state) {
146         this.state = state;
147     }
148
149     public String getPostalCode() {
150         return postalCode;
151     }
152
153     public void setPostalCode(String postalCode) {
154         this.postalCode = postalCode;
155     }
156
157     public String getCountry() {
158         return country;
159     }
160
161     public void setCountry(String country) {
162         this.country = country;
163     }
164
165     public String getPhone() {
166         return phone;
167     }
168
169     public void setPhone(String phone) {
170         this.phone = phone;
171     }
172
173     public Boolean getOptIn1() {
174         return optIn1;
175     }
176
177     public void setOptIn1(Boolean optIn1) {
178         this.optIn1 = optIn1;
179     }
180
181     public Boolean getOptIn2() {
182         return optIn2;
183     }
184
185     public void setOptIn2(Boolean optIn2) {
186         this.optIn2 = optIn2;
187     }
188
189     public String getAuthenticationToken() {
190         return authenticationToken;
191     }
192
193     public void setAuthenticationToken(String authenticationToken) {
194         this.authenticationToken = authenticationToken;
195     }
196
197     public String getRole() {
198         return role;
199     }
200
201     public void setRole(String role) {
202         this.role = role;
203     }
204
205     public String getSessionId() {
206         return sessionId;
207     }
208
209     public void setSessionId(String sessionId) {
210         this.sessionId = sessionId;
211     }
212 }