package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import java.util.List;
import xyz.stream.download.config.InnerConstant;

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

    @SerializedName("audios_type")
    private List<CommonCategoryEntity> audiosType;

    @SerializedName("network")
    private List<NetworkEntity> network;

    @SerializedName("order")
    private List<CommonCategoryEntity> order;

    @SerializedName("region")
    private List<CommonCategoryEntity> region;

    @SerializedName("year")
    private List<YearEntity> year;

    public static class CommonCategoryEntity {

        @SerializedName("label")
        private String label;

        @SerializedName("value")
        private String value;

        public String getLabel() {
            return this.label;
        }

        public String getValue() {
            return this.value;
        }

        public void setLabel(String str) {
            this.label = str;
        }

        public void setValue(String str) {
            this.value = str;
        }
    }

    public static class NetworkEntity {

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

        @SerializedName("logo")
        private String logo;

        @SerializedName("value")
        private String value;

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

        public String getLogo() {
            return this.logo;
        }

        public String getValue() {
            return this.value;
        }

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

        public void setLogo(String str) {
            this.logo = str;
        }

        public void setValue(String str) {
            this.value = str;
        }
    }

    public static class YearEntity {

        @SerializedName("max")
        private String max;

        @SerializedName("min")
        private String min;

        @SerializedName("value")
        private String value;

        public String getMax() {
            return this.max;
        }

        public String getMin() {
            return this.min;
        }

        public String getValue() {
            return this.value;
        }

        public void setMax(String str) {
            this.max = str;
        }

        public void setMin(String str) {
            this.min = str;
        }

        public void setValue(String str) {
            this.value = str;
        }
    }

    public List<CommonCategoryEntity> getAudiosType() {
        return this.audiosType;
    }

    public List<NetworkEntity> getNetwork() {
        return this.network;
    }

    public List<CommonCategoryEntity> getOrder() {
        return this.order;
    }

    public List<CommonCategoryEntity> getRegion() {
        return this.region;
    }

    public List<YearEntity> getYear() {
        return this.year;
    }

    public void setAudiosType(List<CommonCategoryEntity> list) {
        this.audiosType = list;
    }

    public void setNetwork(List<NetworkEntity> list) {
        this.network = list;
    }

    public void setOrder(List<CommonCategoryEntity> list) {
        this.order = list;
    }

    public void setRegion(List<CommonCategoryEntity> list) {
        this.region = list;
    }

    public void setYear(List<YearEntity> list) {
        this.year = list;
    }
}
