model.events.AdminStreamInfoList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-api-client-java Show documentation
Show all versions of symphony-api-client-java Show documentation
Symphony API Client provided by Symphony Platform Solutions team
package model.events;
import java.util.List;
import model.AdminStreamFilter;
import model.AdminStreamInfo;
public class AdminStreamInfoList {
private int count;
private int skip;
private int limit;
private AdminStreamFilter filter;
private List streams;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getSkip() {
return skip;
}
public void setSkip(int skip) {
this.skip = skip;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
public AdminStreamFilter getFilter() {
return filter;
}
public void setFilter(AdminStreamFilter filter) {
this.filter = filter;
}
public List getStreams() {
return streams;
}
public void setStreams(List streams) {
this.streams = streams;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy