Back to project page UpcomingMoviesMVP.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Defi...
If you think the Android project UpcomingMoviesMVP 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.jlmd.android.newfilmsmvp.api.upcomingmovies.model; //w w w. j ava 2s . c o m import java.util.ArrayList; import java.util.List; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class UpcomingMoviesResult { @Expose private Dates dates; @Expose private Integer page; @Expose private List<Result> results = new ArrayList<Result>(); @SerializedName("total_pages") @Expose private Integer totalPages; @SerializedName("total_results") @Expose private Integer totalResults; /** * * @return * The dates */ public Dates getDates() { return dates; } /** * * @param dates * The dates */ public void setDates(Dates dates) { this.dates = dates; } /** * * @return * The page */ public Integer getPage() { return page; } /** * * @param page * The page */ public void setPage(Integer page) { this.page = page; } /** * * @return * The results */ public List<Result> getResults() { return results; } /** * * @param results * The results */ public void setResults(List<Result> results) { this.results = results; } /** * * @return * The totalPages */ public Integer getTotalPages() { return totalPages; } /** * * @param totalPages * The total_pages */ public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } /** * * @return * The totalResults */ public Integer getTotalResults() { return totalResults; } /** * * @param totalResults * The total_results */ public void setTotalResults(Integer totalResults) { this.totalResults = totalResults; } }