package org.schabi.newpipe.extractor; import java.util.List; public abstract class ListInfo extends Info { public List related_streams; public boolean has_more_streams; public String next_streams_url; public ListInfo(int serviceId, String id, String url, String name) { super(serviceId, id, url, name); } public List getRelated_streams() { return related_streams; } public void setRelatedStreams(List related_streams) { this.related_streams = related_streams; } public boolean isHas_more_streams() { return has_more_streams; } public void setHasMoreStreams(boolean has_more_streams) { this.has_more_streams = has_more_streams; } public String getNext_streams_url() { return next_streams_url; } public void setNextStreamsUrl(String next_streams_url) { this.next_streams_url = next_streams_url; } }