package xyz.stream.api.database.entity;

import androidx.room.ColumnInfo;
import androidx.room.Entity;
import androidx.room.PrimaryKey;

/* JADX INFO: loaded from: classes3.dex */
@Entity(tableName = "episode_detail")
public class EpisodeDetail {

    @ColumnInfo(name = "air_date")
    String airDate;

    @ColumnInfo(name = "episode_number")
    Integer episodeNumber;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    @PrimaryKey
    Integer f35796id;
    String locale;
    String name;
    String overview;
    Integer runtime;

    @ColumnInfo(name = "season_id")
    Integer seasonId;

    @ColumnInfo(name = "season_name")
    String seasonName;

    @ColumnInfo(name = "season_number")
    Integer seasonNumber;

    @ColumnInfo(name = "series_id")
    Integer seriesId;

    @ColumnInfo(name = "still_path")
    String stillPath;

    @ColumnInfo(name = "subtitle")
    String subtitle;

    @ColumnInfo(name = "subtitle_type")
    String subtitleType;

    @ColumnInfo(name = "video_source")
    String videoSource;

    @ColumnInfo(name = "vote_average")
    Double voteAverage;

    public EpisodeDetail(Integer num, Integer num2, String str, Integer num3, Integer num4, String str2, Integer num5, String str3, String str4, String str5, String str6, String str7, String str8, String str9, Double d10, Integer num6) {
        this.f35796id = num;
        this.seasonId = num2;
        this.locale = str;
        this.seriesId = num3;
        this.episodeNumber = num4;
        this.seasonName = str2;
        this.seasonNumber = num5;
        this.airDate = str3;
        this.name = str4;
        this.overview = str5;
        this.stillPath = str6;
        this.videoSource = str7;
        this.subtitleType = str8;
        this.subtitle = str9;
        this.voteAverage = d10;
        this.runtime = num6;
    }

    public String getAirDate() {
        return this.airDate;
    }

    public Integer getEpisodeNumber() {
        return this.episodeNumber;
    }

    public Integer getId() {
        return this.f35796id;
    }

    public String getLocale() {
        return this.locale;
    }

    public String getName() {
        return this.name;
    }

    public String getOverview() {
        return this.overview;
    }

    public Integer getRuntime() {
        return this.runtime;
    }

    public Integer getSeasonId() {
        return this.seasonId;
    }

    public String getSeasonName() {
        return this.seasonName;
    }

    public Integer getSeasonNumber() {
        return this.seasonNumber;
    }

    public Integer getSeriesId() {
        return this.seriesId;
    }

    public String getStillPath() {
        return this.stillPath;
    }

    public String getSubtitle() {
        return this.subtitle;
    }

    public String getSubtitleType() {
        return this.subtitleType;
    }

    public String getVideoSource() {
        return this.videoSource;
    }

    public Double getVoteAverage() {
        return this.voteAverage;
    }

    public void setAirDate(String str) {
        this.airDate = str;
    }

    public void setEpisodeNumber(Integer num) {
        this.episodeNumber = num;
    }

    public void setId(Integer num) {
        this.f35796id = num;
    }

    public void setLocale(String str) {
        this.locale = str;
    }

    public void setName(String str) {
        this.name = str;
    }

    public void setOverview(String str) {
        this.overview = str;
    }

    public void setRuntime(Integer num) {
        this.runtime = num;
    }

    public void setSeasonId(Integer num) {
        this.seasonId = num;
    }

    public void setSeasonName(String str) {
        this.seasonName = str;
    }

    public void setSeasonNumber(Integer num) {
        this.seasonNumber = num;
    }

    public void setSeriesId(Integer num) {
        this.seriesId = num;
    }

    public void setStillPath(String str) {
        this.stillPath = str;
    }

    public void setSubtitle(String str) {
        this.subtitle = str;
    }

    public void setSubtitleType(String str) {
        this.subtitleType = str;
    }

    public void setVideoSource(String str) {
        this.videoSource = str;
    }

    public void setVoteAverage(Double d10) {
        this.voteAverage = d10;
    }
}
