package xyz.stream.api.entity;

import androidx.annotation.NonNull;
import com.google.gson.annotations.SerializedName;
import tv.danmaku.ijk.media.player.IjkMediaMeta;

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

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

    @SerializedName("source_type")
    private Integer sourceType;

    @NonNull
    @SerializedName(IjkMediaMeta.IJKM_KEY_TITLE)
    private String title;

    public CategoryEntity(@NonNull String str, Integer num) {
        this.sourceType = num;
        this.title = str;
    }

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

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

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

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

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

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