package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import java.util.List;

/* JADX INFO: loaded from: classes3.dex */
public class TagVideoEntity {
    private List<LiveChannelEntity> channelList;
    private List<CreditsEntity> peopleList;

    @SerializedName("tag_id")
    private int tagId;

    @SerializedName("tag_title")
    private String tagTitle;
    private List<VideoEntity> videoList;

    public List<LiveChannelEntity> getChannelList() {
        return this.channelList;
    }

    public List<CreditsEntity> getPeopleList() {
        return this.peopleList;
    }

    public int getTagId() {
        return this.tagId;
    }

    public String getTagTitle() {
        return this.tagTitle;
    }

    public List<VideoEntity> getVideoList() {
        return this.videoList;
    }

    public void setChannelList(List<LiveChannelEntity> list) {
        this.channelList = list;
    }

    public void setPeopleList(List<CreditsEntity> list) {
        this.peopleList = list;
    }

    public void setTagId(int i10) {
        this.tagId = i10;
    }

    public void setTagTitle(String str) {
        this.tagTitle = str;
    }

    public void setVideoList(List<VideoEntity> list) {
        this.videoList = list;
    }
}
