com.senseidb.search.client.json.req.GroupBy Maven / Gradle / Ivy
package com.senseidb.search.client.json.req;
import java.util.List;
/**
* Group-by field: the field name used for the group-by operation (also called field collapsing )
*
*/
public class GroupBy {
private List columns;
private int top;
public GroupBy() {
}
public GroupBy(List columns, int top) {
this.columns = columns;
this.top = top;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy