]> git.basschouten.com Git - openhab-addons.git/blob
f378e25fc931e490f1c70c99b6824c1780c3ea0c
[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.icloud.internal.handler.dto.json.response;
14
15 /**
16  * Serializable class to parse json response received from the Apple server.
17  *
18  * @author Patrik Gfeller - Initial Contribution
19  *
20  */
21 public class ICloudServerContextTimezone {
22     private int currentOffset;
23
24     private int previousOffset;
25
26     private long previousTransition;
27
28     private String tzCurrentName;
29
30     private String tzName;
31
32     public int getCurrentOffset() {
33         return this.currentOffset;
34     }
35
36     public int getPreviousOffset() {
37         return this.previousOffset;
38     }
39
40     public long getPreviousTransition() {
41         return this.previousTransition;
42     }
43
44     public String getTzCurrentName() {
45         return this.tzCurrentName;
46     }
47
48     public String getTzName() {
49         return this.tzName;
50     }
51 }