]> git.basschouten.com Git - openhab-addons.git/blob
59335542ff97ef0db0ac09390b2f160d116a4b4b
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.squeezebox.internal.dto;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * The {@link RemoteMetaDTO} contains remote metadata information, including button and
19  * button override functionality.
20  *
21  * @author Mark Hilbush - Initial contribution
22  */
23 public class RemoteMetaDTO {
24
25     /**
26      * Contains button specifications for forward, rewind, repeat, shuffle
27      */
28     public ButtonsDTO buttons;
29
30     /**
31      * Currently unused
32      */
33     @SerializedName("id")
34     public String id;
35
36     /**
37      * Currently unused
38      */
39     @SerializedName("title")
40     public String title;
41
42     /**
43      * Currently unused
44      */
45     @SerializedName("artist")
46     public String artist;
47
48     /**
49      * Currently unused
50      */
51     @SerializedName("album")
52     public String album;
53
54     /**
55      * Currently unused
56      */
57     @SerializedName("artwork_url")
58     public String artworkUrl;
59
60     /**
61      * Currently unused
62      */
63     @SerializedName("coverart")
64     public String coverart;
65
66     /**
67      * Currently unused
68      */
69     @SerializedName("coverid")
70     public String coverid;
71
72     /**
73      * Currently unused
74      */
75     @SerializedName("year")
76     public String year;
77 }