com.lacunasoftware.signer.javaclient.responses.PaginatedSearchResponse Maven / Gradle / Ivy
package com.lacunasoftware.signer.javaclient.responses;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class PaginatedSearchResponse {
@SerializedName("items")
private List items;
@SerializedName("totalCount")
private Integer totalCount;
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}