package xyz.stream.api.database.entity;

import androidx.media3.exoplayer.rtsp.SessionDescription;
import androidx.room.ColumnInfo;
import androidx.room.Entity;
import androidx.room.Ignore;
import androidx.room.PrimaryKey;
import com.pichillilorenzo.flutter_inappwebview_android.credential_database.URLProtectionSpaceContract;
import tv.danmaku.ijk.media.player.IjkMediaPlayer;

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

    @ColumnInfo(name = "backup_turbo_url")
    private String backupTurboUrl;

    @ColumnInfo(name = "category_property")
    private String categoryProperty;

    @ColumnInfo(name = "channel_id")
    Integer channelId;

    @ColumnInfo(name = "content_rating")
    private String contentRating;

    @ColumnInfo(name = "epg_url")
    private String epgUrl;

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

    @ColumnInfo(name = "group_id")
    private Integer groupId;

    @ColumnInfo(name = "group_title")
    private String groupTitle;

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

    @ColumnInfo(defaultValue = SessionDescription.SUPPORTED_SDP_VERSION, name = "is_iptv")
    Integer isIptv;

    @ColumnInfo(defaultValue = SessionDescription.SUPPORTED_SDP_VERSION, name = "is_premium")
    Integer isPremium;

    @ColumnInfo(defaultValue = SessionDescription.SUPPORTED_SDP_VERSION, name = URLProtectionSpaceContract.FeedEntry.COLUMN_NAME_PROTOCOL)
    Integer protocol;

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

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

    @ColumnInfo(name = "tvg_logo")
    private String tvgLogo;

    @ColumnInfo(name = "tvg_name")
    private String tvgName;

    @ColumnInfo(name = "update_date")
    String updateDate;

    @ColumnInfo(name = "updated_at")
    private Integer updatedAt;

    @ColumnInfo(name = IjkMediaPlayer.OnNativeInvokeListener.ARG_URL)
    private String url;

    @Ignore
    public LiveHistory() {
    }

    public String getBackupTurboUrl() {
        return this.backupTurboUrl;
    }

    public String getCategoryProperty() {
        return this.categoryProperty;
    }

    public Integer getChannelId() {
        return this.channelId;
    }

    public String getContentRating() {
        return this.contentRating;
    }

    public String getEpgUrl() {
        return this.epgUrl;
    }

    public String getExtra() {
        return this.extra;
    }

    public Integer getGroupId() {
        return this.groupId;
    }

    public String getGroupTitle() {
        return this.groupTitle;
    }

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

    public Integer getIsIptv() {
        return this.isIptv;
    }

    public Integer getIsPremium() {
        return this.isPremium;
    }

    public Integer getProtocol() {
        return this.protocol;
    }

    public String getRegion() {
        return this.region;
    }

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

    public String getTvgLogo() {
        return this.tvgLogo;
    }

    public String getTvgName() {
        return this.tvgName;
    }

    public String getUpdateDate() {
        return this.updateDate;
    }

    public Integer getUpdatedAt() {
        return this.updatedAt;
    }

    public String getUrl() {
        return this.url;
    }

    public void setBackupTurboUrl(String str) {
        this.backupTurboUrl = str;
    }

    public void setCategoryProperty(String str) {
        this.categoryProperty = str;
    }

    public void setChannelId(Integer num) {
        this.channelId = num;
    }

    public void setContentRating(String str) {
        this.contentRating = str;
    }

    public void setEpgUrl(String str) {
        this.epgUrl = str;
    }

    public void setExtra(String str) {
        this.extra = str;
    }

    public void setGroupId(Integer num) {
        this.groupId = num;
    }

    public void setGroupTitle(String str) {
        this.groupTitle = str;
    }

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

    public void setIsIptv(Integer num) {
        this.isIptv = num;
    }

    public void setIsPremium(Integer num) {
        this.isPremium = num;
    }

    public void setProtocol(Integer num) {
        this.protocol = num;
    }

    public void setRegion(String str) {
        this.region = str;
    }

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

    public void setTvgLogo(String str) {
        this.tvgLogo = str;
    }

    public void setTvgName(String str) {
        this.tvgName = str;
    }

    public void setUpdateDate(String str) {
        this.updateDate = str;
    }

    public void setUpdatedAt(Integer num) {
        this.updatedAt = num;
    }

    public void setUrl(String str) {
        this.url = str;
    }

    public LiveHistory(Integer num, Integer num2, String str, String str2, Integer num3, String str3, String str4, String str5, String str6, Integer num4, String str7, String str8, Integer num5, Integer num6, String str9, String str10, String str11, Integer num7, String str12) {
        this.f35799id = num;
        this.channelId = num2;
        this.tvgName = str;
        this.tvgLogo = str2;
        this.groupId = num3;
        this.groupTitle = str3;
        this.extra = str4;
        this.region = str5;
        this.url = str6;
        this.updatedAt = num4;
        this.roleId = str7;
        this.updateDate = str8;
        this.isPremium = num5;
        this.isIptv = num6;
        this.contentRating = str9;
        this.backupTurboUrl = str10;
        this.epgUrl = str11;
        this.protocol = num7;
        this.categoryProperty = str12;
    }
}
