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.moviedetails.model; // w w w . ja va 2 s. co m import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class BelongsToCollection { @Expose private Integer id; @Expose private String name; @SerializedName("poster_path") @Expose private String posterPath; @SerializedName("backdrop_path") @Expose private String backdropPath; /** * * @return * The id */ public Integer getId() { return id; } /** * * @param id * The id */ public void setId(Integer id) { this.id = id; } /** * * @return * The name */ public String getName() { return name; } /** * * @param name * The name */ public void setName(String name) { this.name = name; } /** * * @return * The posterPath */ public String getPosterPath() { return posterPath; } /** * * @param posterPath * The poster_path */ public void setPosterPath(String posterPath) { this.posterPath = posterPath; } /** * * @return * The backdropPath */ public String getBackdropPath() { return backdropPath; } /** * * @param backdropPath * The backdrop_path */ public void setBackdropPath(String backdropPath) { this.backdropPath = backdropPath; } }