]> git.basschouten.com Git - openhab-addons.git/blob
1220898169390e79472d9bbee37ffea1319228c0
[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.lutron.internal.protocol.leap.dto;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * LEAP ProjectTimestamp Object
19  *
20  * @author Peter Wojciechowski - Initial contribution
21  */
22 public class ProjectTimestamp {
23     @SerializedName("Year")
24     public int year;
25     @SerializedName("Month")
26     public int month;
27     @SerializedName("Day")
28     public int day;
29     @SerializedName("Hour")
30     public int hour;
31     @SerializedName("Minute")
32     public int minute;
33     @SerializedName("Second")
34     public int second;
35     @SerializedName("Utc")
36     public String utc;
37 }