model.UserSearchResult 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;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
import java.util.Map;
@JsonIgnoreProperties(ignoreUnknown = true)
public class UserSearchResult {
private int count;
private int skip;
private String query;
private Map filters;
private List users;
private int limit;
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 String getQuery() {
return query;
}
public void setQuery(String query) {
this.query = query;
}
public Map getFilters() {
return filters;
}
public void setFilters(Map filters) {
this.filters = filters;
}
public List getUsers() {
return users;
}
public void setUsers(List users) {
this.users = users;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy