2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.nikohomecontrol.internal.protocol.nhc2;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
17 import com.google.gson.annotations.SerializedName;
20 * {@link NhcTimeInfo2} represents Niko Home Control II timeinfo. It is used when parsing the timeinfo response json.
22 * @author Mark Herwege - Initial Contribution
25 public class NhcTimeInfo2 {
26 @SerializedName(value = "GMTOffset")
27 String gmtOffset = "";
30 @SerializedName(value = "UTCTime")
34 * @return the gMTOffset
36 public String getGMTOffset() {
41 * @return the timeZone
43 public String getTimezone() {
50 public String getIsDst() {
57 public String getUTCTime() {