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; // ww w . j a va2s .co m import com.google.gson.annotations.SerializedName; /** * Presents all the properties of API show objects */ public class Show extends Entity { public String name; public String shortcode; public String genre; public String category; public String type; @SerializedName("image_url") public String imageUrl; @SerializedName("web_url") public String webUrl; @SerializedName("stream_url") public String streamUrl; @SerializedName("twitter_url") public String twitterUrl; public String irc; }