com.visenze.visearch.ObjectSearchResult Maven / Gradle / Ivy
package com.visenze.visearch;
import java.util.List;
import java.util.Map;
/**
* Created by dejun on 5/6/17.
*/
public class ObjectSearchResult {
private String type;
private Float score;
private List box;
private Map> attributes;
private Map> attributesList;
private int total;
private List result;
private List facets;
public ObjectSearchResult() {
}
public String getType() {
return type;
}
public Float getScore() {
return score;
}
public List getBox() {
return box;
}
public Map> getAttributes() {
return attributes;
}
public Map> getAttributesList() {
return attributesList;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List getResult() {
return result;
}
public void setResult(List result) {
this.result = result;
}
public void setType(String type) {
this.type = type;
}
public void setScore(Float score) {
this.score = score;
}
public void setBox(List box) {
this.box = box;
}
public void setAttributes(Map> attributes) {
this.attributes = attributes;
}
public void setAttributesList(Map> attributesList) {
this.attributesList = attributesList;
}
public List getFacets() {
return facets;
}
public void setFacets(List facets) {
this.facets = facets;
}
}