]> git.basschouten.com Git - openhab-addons.git/blob
bfc31ba09a2cbaebeb041b01f3cf2d443e547327
[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.lametrictime.internal.api.cloud.dto;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * Pojo for icon field.
19  *
20  * @author Gregory Moyer - Initial contribution
21  */
22 public enum IconField {
23     @SerializedName("id")
24     ID,
25     @SerializedName("title")
26     TITLE,
27     @SerializedName("code")
28     CODE,
29     @SerializedName("type")
30     TYPE,
31     @SerializedName("url")
32     URL,
33     @SerializedName("thumb")
34     THUMB
35 }