]> git.basschouten.com Git - openhab-addons.git/blob
28431c36b76d6acea044446cb766a82214890a06
[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.spotify.internal.api.model;
14
15 /**
16  * Spotify Api Artist data class.
17  *
18  * @author Andreas Stenlund - Initial contribution
19  * @author Hilbrand Bouwkamp - Moved to it's own class
20  */
21 public class Artist {
22
23     private ExternalUrl externalUrls;
24     private String href;
25     private String id;
26     private String name;
27     private String type;
28     private String uri;
29
30     public ExternalUrl getExternalUrls() {
31         return externalUrls;
32     }
33
34     public String getHref() {
35         return href;
36     }
37
38     public String getId() {
39         return id;
40     }
41
42     public String getName() {
43         return name;
44     }
45
46     public String getType() {
47         return type;
48     }
49
50     public String getUri() {
51         return uri;
52     }
53 }