]> git.basschouten.com Git - openhab-addons.git/blob
90e66afdf3ac2d1e694e4070b687a6b7f5eaacc9
[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.vigicrues.internal.dto.vigicrues;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * The {@link VicANMoinsUn} is the Java class used to map the JSON
19  * response to a vigicrue api endpoint request.
20  *
21  * @author GaĆ«l L'hopital - Initial contribution
22  */
23 public class VicANMoinsUn {
24     @SerializedName("vic.CdEntVigiCru")
25     public String vicCdEntVigiCru;
26
27     /*
28      * Currently unused, maybe interesting in the future
29      *
30      * @SerializedName("@id")
31      * private String id;
32      *
33      * @SerializedName("vic.TypEntVigiCru")
34      * private String vicTypEntVigiCru;
35      *
36      * @SerializedName("vic.LbEntVigiCru")
37      * private String vicLbEntVigiCru;
38      *
39      * @SerializedName("LinkEntity")
40      * private String linkEntity;
41      *
42      * @SerializedName("LinkInfoCru")
43      * private String linkInfoCru;
44      */
45 }