package xyz.stream.api.entity;

import androidx.annotation.NonNull;
import com.google.gson.annotations.SerializedName;
import java.util.List;

/* JADX INFO: loaded from: classes3.dex */
public class LiveCategoryEntity implements Cloneable {

    @SerializedName("category_id")
    private Integer categoryId;

    @SerializedName("channels")
    private List<LiveChannelEntity> channels;

    @SerializedName("is_adult")
    private int isAdult;

    @SerializedName("is_premium")
    private int isPremium;

    @SerializedName("logoUrl")
    private String logoUrl;

    @SerializedName("name")
    private String name;

    @SerializedName("program_total")
    private Integer programTotal;

    @SerializedName("type")
    private int type;

    public LiveCategoryEntity(Integer num, String str, Integer num2) {
        this.categoryId = num;
        this.name = str;
        this.programTotal = num2;
    }

    public Integer getCategoryId() {
        return this.categoryId;
    }

    public List<LiveChannelEntity> getChannels() {
        return this.channels;
    }

    public int getIsAdult() {
        return this.isAdult;
    }

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

    public String getLogoUrl() {
        return this.logoUrl;
    }

    public String getName() {
        return this.name;
    }

    public Integer getProgramTotal() {
        return this.programTotal;
    }

    public int getType() {
        return this.type;
    }

    public void setCategoryId(Integer num) {
        this.categoryId = num;
    }

    public void setChannels(List<LiveChannelEntity> list) {
        this.channels = list;
    }

    public void setIsAdult(int i10) {
        this.isAdult = i10;
    }

    public void setIsPremium(int i10) {
        this.isPremium = i10;
    }

    public void setLogoUrl(String str) {
        this.logoUrl = str;
    }

    public void setName(String str) {
        this.name = str;
    }

    public void setProgramTotal(Integer num) {
        this.programTotal = num;
    }

    public void setType(int i10) {
        this.type = i10;
    }

    public LiveCategoryEntity(Integer num, String str, Integer num2, int i10) {
        this.categoryId = num;
        this.name = str;
        this.programTotal = num2;
        this.type = i10;
    }

    @NonNull
    public LiveCategoryEntity clone() {
        try {
            return (LiveCategoryEntity) super.clone();
        } catch (CloneNotSupportedException unused) {
            throw new AssertionError();
        }
    }
}
