Back to project page ponyville-live-android.
The source code is released under:
Apache License
If you think the Android project ponyville-live-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ponyvillelive.app.model; /* w ww . ja va 2 s. c o m*/ /** * Metadata associated with a station, as presented by the "Now Playing" endpoint */ public class StationMeta { public Station station; public ListenerMeta listeners; public static class ListenerMeta { public int current; public int unique; public int total; } public static class TrackMeta { public String id; public String text; public String artist; public String title; public Rating rating; } public static class Rating { public int likes; public int dislikes; public int score; } }