com.sentenial.rest.client.api.common.resource.RestPaginatedCollectionResponseEnvelope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nuapay-rest-client Show documentation
Show all versions of nuapay-rest-client Show documentation
NuaPay REST API Java Bindings
package com.sentenial.rest.client.api.common.resource;
import java.util.ArrayList;
import java.util.List;
public class RestPaginatedCollectionResponseEnvelope> extends RestCollectionResponseEnvelope{
private RestResponsePaginationDetails page;
private List sort = new ArrayList();
public RestResponsePaginationDetails getPage() {
return page;
}
public void setPage(RestResponsePaginationDetails page) {
this.page = page;
}
public List getSort() {
return sort;
}
public void setSort(List sort) {
this.sort = sort;
}
@Override
public String toString() {
return "RestPaginatedCollectionResponseEnvelope [uri=" + getUri() + ", data=" + getData()
+ ", page=" + page + ", sort=" + sort + ", getUri()=" + "]";
}
}