com.bazaarvoice.commons.data.model.QueryResults Maven / Gradle / Ivy
package com.bazaarvoice.commons.data.model;
import java.util.List;
public interface QueryResults {
List getValues();
int getStartIndex();
int getTotal();
}
package com.bazaarvoice.commons.data.model;
import java.util.List;
public interface QueryResults {
List getValues();
int getStartIndex();
int getTotal();
}