package com.example.mortar.model.quotes; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.List; public class Quote { @SerializedName("quote") @Expose private String quote; @SerializedName("length") @Expose private String length; @SerializedName("author") @Expose private String author; @SerializedName("tags") @Expose private List<String> tags = null; @SerializedName("category") @Expose private String category; @SerializedName("date") @Expose private String date; @SerializedName("permalink") @Expose private String permalink; @SerializedName("title") @Expose private String title; @SerializedName("background") @Expose private String background; @SerializedName("id") @Expose private String id; public String getQuote() { return quote; } public void setQuote(String quote) { this.quote = quote; } public String getLength() { return length; } public void setLength(String length) { this.length = length; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public List<String> getTags() { return tags; } public void setTags(List<String> tags) { this.tags = tags; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getPermalink() { return permalink; } public void setPermalink(String permalink) { this.permalink = permalink; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getBackground() { return background; } public void setBackground(String background) { this.background = background; } public String getId() { return id; } public void setId(String id) { this.id = id; } }