Skip to content

Instantly share code, notes, and snippets.

@burnix
Created October 30, 2015 16:23
Show Gist options
  • Save burnix/851b3bee60e186434ccf to your computer and use it in GitHub Desktop.
Save burnix/851b3bee60e186434ccf to your computer and use it in GitHub Desktop.
public class Result {
@SerializedName("section")
@Expose
private String section;
@SerializedName("title")
@Expose
private String title;
@SerializedName("abstract")
@Expose
private String _abstract;
@SerializedName("url")
@Expose
private String url;
@SerializedName("byline")
@Expose
private String byline;
@SerializedName("item_type")
@Expose
private String itemType;
@SerializedName("source")
@Expose
private String source;
@SerializedName("updated_date")
@Expose
private String updatedDate;
@SerializedName("created_date")
@Expose
private String createdDate;
@SerializedName("published_date")
@Expose
private String publishedDate;
@SerializedName("material_type_facet")
@Expose
private String materialTypeFacet;
@SerializedName("kicker")
@Expose
private String kicker;
@SerializedName("subheadline")
@Expose
private String subheadline;
@SerializedName("des_facet")
@Expose
private List<String> desFacet = new ArrayList<String>();
@SerializedName("org_facet")
@Expose
private String orgFacet;
@SerializedName("per_facet")
@Expose
private String perFacet;
@SerializedName("geo_facet")
@Expose
private List<String> geoFacet = new ArrayList<String>();
@SerializedName("related_urls")
@Expose
private List<RelatedUrl> relatedUrls = new ArrayList<RelatedUrl>();
@SerializedName("multimedia")
@Expose
private List<Multimedium> multimedia = new ArrayList<Multimedium>();
/**
*
* @return
* The section
*/
public String getSection() {
return section;
}
/**
*
* @param section
* The section
*/
public void setSection(String section) {
this.section = section;
}
/**
*
* @return
* The title
*/
public String getTitle() {
return title;
}
/**
*
* @param title
* The title
*/
public void setTitle(String title) {
this.title = title;
}
/**
*
* @return
* The _abstract
*/
public String getAbstract() {
return _abstract;
}
/**
*
* @param _abstract
* The abstract
*/
public void setAbstract(String _abstract) {
this._abstract = _abstract;
}
/**
*
* @return
* The url
*/
public String getUrl() {
return url;
}
/**
*
* @param url
* The url
*/
public void setUrl(String url) {
this.url = url;
}
/**
*
* @return
* The byline
*/
public String getByline() {
return byline;
}
/**
*
* @param byline
* The byline
*/
public void setByline(String byline) {
this.byline = byline;
}
/**
*
* @return
* The itemType
*/
public String getItemType() {
return itemType;
}
/**
*
* @param itemType
* The item_type
*/
public void setItemType(String itemType) {
this.itemType = itemType;
}
/**
*
* @return
* The source
*/
public String getSource() {
return source;
}
/**
*
* @param source
* The source
*/
public void setSource(String source) {
this.source = source;
}
/**
*
* @return
* The updatedDate
*/
public String getUpdatedDate() {
return updatedDate;
}
/**
*
* @param updatedDate
* The updated_date
*/
public void setUpdatedDate(String updatedDate) {
this.updatedDate = updatedDate;
}
/**
*
* @return
* The createdDate
*/
public String getCreatedDate() {
return createdDate;
}
/**
*
* @param createdDate
* The created_date
*/
public void setCreatedDate(String createdDate) {
this.createdDate = createdDate;
}
/**
*
* @return
* The publishedDate
*/
public String getPublishedDate() {
return publishedDate;
}
/**
*
* @param publishedDate
* The published_date
*/
public void setPublishedDate(String publishedDate) {
this.publishedDate = publishedDate;
}
/**
*
* @return
* The materialTypeFacet
*/
public String getMaterialTypeFacet() {
return materialTypeFacet;
}
/**
*
* @param materialTypeFacet
* The material_type_facet
*/
public void setMaterialTypeFacet(String materialTypeFacet) {
this.materialTypeFacet = materialTypeFacet;
}
/**
*
* @return
* The kicker
*/
public String getKicker() {
return kicker;
}
/**
*
* @param kicker
* The kicker
*/
public void setKicker(String kicker) {
this.kicker = kicker;
}
/**
*
* @return
* The subheadline
*/
public String getSubheadline() {
return subheadline;
}
/**
*
* @param subheadline
* The subheadline
*/
public void setSubheadline(String subheadline) {
this.subheadline = subheadline;
}
/**
*
* @return
* The desFacet
*/
public List<String> getDesFacet() {
return desFacet;
}
/**
*
* @param desFacet
* The des_facet
*/
public void setDesFacet(List<String> desFacet) {
this.desFacet = desFacet;
}
/**
*
* @return
* The orgFacet
*/
public String getOrgFacet() {
return orgFacet;
}
/**
*
* @param orgFacet
* The org_facet
*/
public void setOrgFacet(String orgFacet) {
this.orgFacet = orgFacet;
}
/**
*
* @return
* The perFacet
*/
public String getPerFacet() {
return perFacet;
}
/**
*
* @param perFacet
* The per_facet
*/
public void setPerFacet(String perFacet) {
this.perFacet = perFacet;
}
/**
*
* @return
* The geoFacet
*/
public List<String> getGeoFacet() {
return geoFacet;
}
/**
*
* @param geoFacet
* The geo_facet
*/
public void setGeoFacet(List<String> geoFacet) {
this.geoFacet = geoFacet;
}
/**
*
* @return
* The relatedUrls
*/
public List<RelatedUrl> getRelatedUrls() {
return relatedUrls;
}
/**
*
* @param relatedUrls
* The related_urls
*/
public void setRelatedUrls(List<RelatedUrl> relatedUrls) {
this.relatedUrls = relatedUrls;
}
/**
*
* @return
* The multimedia
*/
public List<Multimedium> getMultimedia() {
return multimedia;
}
/**
*
* @param multimedia
* The multimedia
*/
public void setMultimedia(List<Multimedium> multimedia) {
this.multimedia = multimedia;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment