package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import tv.danmaku.ijk.media.player.IjkMediaMeta;
import xyz.stream.download.config.InnerConstant;

/* JADX INFO: loaded from: classes3.dex */
public class LiveEpgEntity {

    @SerializedName("description")
    private String description;

    @SerializedName("endTime")
    private String endTime;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    @SerializedName(InnerConstant.Db.f36069id)
    private Integer f35851id;

    @SerializedName("startTime")
    private String startTime;

    @SerializedName(IjkMediaMeta.IJKM_KEY_TITLE)
    private String title;

    public LiveEpgEntity(Integer num, String str, String str2, String str3, String str4) {
        this.f35851id = num;
        this.title = str;
        this.description = str2;
        this.startTime = str3;
        this.endTime = str4;
    }

    public String getDescription() {
        return this.description;
    }

    public String getEndTime() {
        return this.endTime;
    }

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

    public String getStartTime() {
        return this.startTime;
    }

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

    public void setDescription(String str) {
        this.description = str;
    }

    public void setEndTime(String str) {
        this.endTime = str;
    }

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

    public void setStartTime(String str) {
        this.startTime = str;
    }

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