de.gesellix.couchdb.moshi.MoshiReducedViewQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of couchdb-client Show documentation
Show all versions of couchdb-client Show documentation
A CouchDB client written in Groovy
The newest version!
package de.gesellix.couchdb.moshi;
import com.squareup.moshi.Json;
import de.gesellix.couchdb.model.ReducedViewQueryResponse;
import de.gesellix.couchdb.model.RowReference;
import java.util.ArrayList;
import java.util.List;
public class MoshiReducedViewQueryResponse>
implements ReducedViewQueryResponse {
@Json(name = "rows")
private List rows = new ArrayList<>();
@Override
public List getRows() {
return rows;
}
public void setRows(List rows) {
this.rows = rows;
}
@Override
public String toString() {
return "MoshiReducedViewQueryResponse{" +
"rows=" + rows +
'}';
}
}