You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
api-themoviedb/src/main/java/com/omertron/themoviedbapi/model/tv/TvSeason.java

80 lines
1.3 KiB
Java

package com.omertron.themoviedbapi.model.tv;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class TvSeason extends AbstractTv {
@JsonProperty("air_date")
private String airDate;
@JsonProperty("poster_path")
private String posterPath;
@JsonProperty("season_number")
private int seasonNumber;
@JsonProperty("overview")
private String overview;
@JsonProperty("episodes")
private List<TvEpisode> episodes;
public String getAirDate() {
return airDate;
}
public String getPosterPath() {
return posterPath;
}
public int getSeasonNumber() {
return seasonNumber;
}
public void setEpisodes(List<TvEpisode> episodes) {
this.episodes = episodes;
}
public void setAirDate(String airDate) {
this.airDate = airDate;
}
public void setPosterPath(String posterPath) {
this.posterPath = posterPath;
}
public void setSeasonNumber(int seasonNumber) {
this.seasonNumber = seasonNumber;
}
public void setOverview(String overview) {
this.overview = overview;
}
public List<TvEpisode> getEpisodes() {
return episodes;
}
public String getOverview() {
return overview;
}
}