package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;

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

    @SerializedName("create_by")
    private Integer createBy;

    @SerializedName("created_at")
    private Integer createdAt;

    @SerializedName("deleted_at")
    private Integer deletedAt;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    private Integer f35848id;

    @SerializedName("is_default")
    private Integer isDefault;

    @SerializedName("sort_weight")
    private Integer sortWeight;

    @SerializedName("source_name")
    private String sourceName;

    @SerializedName("source_quality")
    private String sourceQuality;

    @SerializedName("update_by")
    private Integer updateBy;

    @SerializedName("updated_at")
    private Integer updatedAt;

    @SerializedName("video_id")
    private Integer videoId;

    @SerializedName("video_source")
    private String videoSource;

    public CmsVideoSource(Integer num, String str, String str2, String str3, Integer num2, Integer num3) {
        this.videoId = num;
        this.videoSource = str;
        this.sourceName = str2;
        this.sourceQuality = str3;
        this.sortWeight = num2;
        this.isDefault = num3;
    }

    public Integer getCreateBy() {
        return this.createBy;
    }

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

    public Integer getDeletedAt() {
        return this.deletedAt;
    }

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

    public Integer getIsDefault() {
        return this.isDefault;
    }

    public Integer getSortWeight() {
        return this.sortWeight;
    }

    public String getSourceName() {
        return this.sourceName;
    }

    public String getSourceQuality() {
        return this.sourceQuality;
    }

    public Integer getUpdateBy() {
        return this.updateBy;
    }

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

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

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

    public void setCreateBy(Integer num) {
        this.createBy = num;
    }

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

    public void setDeletedAt(Integer num) {
        this.deletedAt = num;
    }

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

    public void setIsDefault(Integer num) {
        this.isDefault = num;
    }

    public void setSortWeight(Integer num) {
        this.sortWeight = num;
    }

    public void setSourceName(String str) {
        this.sourceName = str;
    }

    public void setSourceQuality(String str) {
        this.sourceQuality = str;
    }

    public void setUpdateBy(Integer num) {
        this.updateBy = num;
    }

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

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

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