Back to project page droidcon.
The source code is released under:
Apache License
If you think the Android project droidcon 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.timehop.droidcon2014retrofitsample.data.reddit.model; /*from w ww. ja v a 2 s .c o m*/ import org.joda.time.DateTime; public class RedditSubmission extends RedditObject { String banned_by; String subreddit; boolean saved; String id; int gilded; String author; int score; String name; long created; String author_flair_text; DateTime created_utc; int ups; public String getBannedBy() { return banned_by; } public String getSubreddit() { return subreddit; } public boolean isSaved() { return saved; } public String getId() { return id; } public int getGilded() { return gilded; } public String getAuthor() { return author; } public int getScore() { return score; } public String getName() { return name; } public long getCreated() { return created; } public String getAuthorFlairText() { return author_flair_text; } public DateTime getCreatedUtc() { return created_utc; } public int getUps() { return ups; } }