public static enum Attributes {
@SerializedName("online")
ONLINE,
@SerializedName("featured")
FEATURED,
@SerializedName("partnered")
PARTNERED,
@SerializedName("name")
NAME,
@SerializedName("viewersCurrent")
VIEWERS_CURRENT,
@SerializedName("viewersTotal")
VIEWERS_TOTAL,
@SerializedName("followers")
FOLLOWERS,
@SerializedName("subscribers")
SUBSCRIBERS,
@SerializedName("interactive")
INTERACTIVE;
private Attributes() {
}
}