Skip to content

Instantly share code, notes, and snippets.

@janishar
Created August 24, 2016 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janishar/4130ae4c9561dad6defd7ec574b6b0e6 to your computer and use it in GitHub Desktop.
Save janishar/4130ae4c9561dad6defd7ec574b6b0e6 to your computer and use it in GitHub Desktop.
public class Info {
@SerializedName("title")
@Expose
private String title;
@SerializedName("image_url")
@Expose
private String imageUrl;
@SerializedName("caption")
@Expose
private String caption;
@SerializedName("time")
@Expose
private String time;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getCaption() {
return caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment