net.anwiba.spatial.ckan.json.schema.v1_0.Result Maven / Gradle / Ivy
//Copyright (c) 2017 by Andreas W. Bartels
package net.anwiba.spatial.ckan.json.schema.v1_0;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Result {
private Integer count = Integer.valueOf(0);
private String sort = null;
private net.anwiba.spatial.ckan.json.schema.v1_0.Facets facets = null;
private net.anwiba.spatial.ckan.json.schema.v1_0.Facets search_facets = null;
@JsonProperty("count")
public void setCount(final Integer count) {
this.count = count;
}
@JsonProperty("count")
public Integer getCount() {
return this.count;
}
@JsonProperty("sort")
public void setSort(final String sort) {
this.sort = sort;
}
@JsonProperty("sort")
public String getSort() {
return this.sort;
}
@JsonProperty("facets")
public void setFacets(final net.anwiba.spatial.ckan.json.schema.v1_0.Facets facets) {
this.facets = facets;
}
@JsonProperty("facets")
public net.anwiba.spatial.ckan.json.schema.v1_0.Facets getFacets() {
return this.facets;
}
@JsonProperty("search_facets")
public void setSearch_facets(final net.anwiba.spatial.ckan.json.schema.v1_0.Facets search_facets) {
this.search_facets = search_facets;
}
@JsonProperty("search_facets")
public net.anwiba.spatial.ckan.json.schema.v1_0.Facets getSearch_facets() {
return this.search_facets;
}
}