package xyz.stream.download;

import androidx.room.ColumnInfo;
import androidx.room.Entity;
import androidx.room.Ignore;
import androidx.room.PrimaryKey;
import tv.danmaku.ijk.media.player.IjkMediaMeta;

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

    @ColumnInfo(name = "backdrop_path")
    private String backdropPath;

    @ColumnInfo(name = "created_at")
    private Integer createdAt;

    @ColumnInfo(name = "current_bytes")
    private Integer currentBytes;

    @ColumnInfo(name = "download_id")
    private String downloadId;

    @ColumnInfo(name = "download_url")
    private String downloadUrl;

    @ColumnInfo(name = "duration")
    private String duration;

    @ColumnInfo(name = "episode_id")
    private Integer episodeId;

    @ColumnInfo(name = "episode_pic")
    private String episodePic;

    @ColumnInfo(name = "episode_runtime")
    private Integer episodeRuntime;

    @ColumnInfo(name = "file_name")
    private String fileName;

    @ColumnInfo(name = "file_path")
    private String filePath;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    @PrimaryKey(autoGenerate = true)
    private Integer f36040id;

    @ColumnInfo(name = "progress")
    private Integer progress;

    @ColumnInfo(name = "role_id")
    private String roleId;

    @ColumnInfo(name = "source_type")
    private Integer sourceType;

    @ColumnInfo(name = "status")
    private Integer status;

    @ColumnInfo(name = IjkMediaMeta.IJKM_KEY_TITLE)
    private String title;

    @ColumnInfo(name = "total_bytes")
    private Integer totalBytes;

    @ColumnInfo(name = "video_id")
    private Integer videoId;

    public DownloadFile(Integer num, Integer num2, Integer num3, String str, String str2, String str3, String str4, Integer num4, Integer num5, Integer num6, Integer num7, Integer num8, String str5, String str6, Integer num9, String str7, String str8, Integer num10, String str9) {
        this.f36040id = num;
        this.videoId = num2;
        this.episodeId = num3;
        this.downloadId = str;
        this.downloadUrl = str2;
        this.filePath = str3;
        this.fileName = str4;
        this.status = num4;
        this.sourceType = num5;
        this.progress = num6;
        this.episodePic = str6;
        this.totalBytes = num7;
        this.currentBytes = num8;
        this.episodeRuntime = num9;
        this.backdropPath = str5;
        this.title = str7;
        this.duration = str8;
        this.createdAt = num10;
        this.roleId = str9;
    }

    public String getBackdropPath() {
        return this.backdropPath;
    }

    public Integer getCreatedAt() {
        return this.createdAt;
    }

    public Integer getCurrentBytes() {
        return this.currentBytes;
    }

    public String getDownloadId() {
        return this.downloadId;
    }

    public String getDownloadUrl() {
        return this.downloadUrl;
    }

    public String getDuration() {
        return this.duration;
    }

    public Integer getEpisodeId() {
        return this.episodeId;
    }

    public String getEpisodePic() {
        return this.episodePic;
    }

    public Integer getEpisodeRuntime() {
        return this.episodeRuntime;
    }

    public String getFileName() {
        return this.fileName;
    }

    public String getFilePath() {
        return this.filePath;
    }

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

    public Integer getProgress() {
        return this.progress;
    }

    public String getRoleId() {
        return this.roleId;
    }

    public Integer getSourceType() {
        return this.sourceType;
    }

    public Integer getStatus() {
        return this.status;
    }

    public String getTitle() {
        return this.title;
    }

    public Integer getTotalBytes() {
        return this.totalBytes;
    }

    public Integer getVideoId() {
        return this.videoId;
    }

    public void setBackdropPath(String str) {
        this.backdropPath = str;
    }

    public void setCreatedAt(Integer num) {
        this.createdAt = num;
    }

    public void setCurrentBytes(Integer num) {
        this.currentBytes = num;
    }

    public void setDownloadId(String str) {
        this.downloadId = str;
    }

    public void setDownloadUrl(String str) {
        this.downloadUrl = str;
    }

    public void setDuration(String str) {
        this.duration = str;
    }

    public void setEpisodeId(Integer num) {
        this.episodeId = num;
    }

    public void setEpisodePic(String str) {
        this.episodePic = str;
    }

    public void setEpisodeRuntime(Integer num) {
        this.episodeRuntime = num;
    }

    public void setFileName(String str) {
        this.fileName = str;
    }

    public void setFilePath(String str) {
        this.filePath = str;
    }

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

    public void setProgress(Integer num) {
        this.progress = num;
    }

    public void setRoleId(String str) {
        this.roleId = str;
    }

    public void setSourceType(Integer num) {
        this.sourceType = num;
    }

    public void setStatus(Integer num) {
        this.status = num;
    }

    public void setTitle(String str) {
        this.title = str;
    }

    public void setTotalBytes(Integer num) {
        this.totalBytes = num;
    }

    public void setVideoId(Integer num) {
        this.videoId = num;
    }

    @Ignore
    public DownloadFile(Integer num, Integer num2, String str, String str2, String str3, String str4, Integer num3, Integer num4, Integer num5, Integer num6, Integer num7, String str5, String str6, Integer num8, String str7, String str8, String str9) {
        this.videoId = num;
        this.episodeId = num2;
        this.downloadId = str;
        this.downloadUrl = str2;
        this.filePath = str3;
        this.fileName = str4;
        this.status = num3;
        this.sourceType = num4;
        this.progress = num5;
        this.totalBytes = num6;
        this.currentBytes = num7;
        this.backdropPath = str5;
        this.episodePic = str6;
        this.episodeRuntime = num8;
        this.title = str7;
        this.duration = str8;
        this.createdAt = Integer.valueOf((int) (System.currentTimeMillis() / 1000));
        this.roleId = str9;
    }
}
