com.visenze.visearch.GroupSearchResult Maven / Gradle / Ivy
package com.visenze.visearch;
import java.util.List;
/**
* Created by Hung on 28/6/17.
*
* Added grouped results for group_by parameter e.g. group by mpid
*
*/
public class GroupSearchResult {
private List result;
private String groupByValue;
public GroupSearchResult() {}
public GroupSearchResult(String groupValue, List result) {
this.result = result;
this.groupByValue = groupValue;
}
public List getResult() {
return result;
}
public void setResult(List result) {
this.result = result;
}
public String getGroupByValue() {
return groupByValue;
}
public void setGroupByValue(String groupByValue) {
this.groupByValue = groupByValue;
}
}