jp.gopay.sdk.models.response.PaginatedList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.response;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/*
PAGINATED LIST
*/
/**
* The Paginated list formats the response to include the items
and has_more
fields, which
* are specific to paginated responses.
*
* @param The type of the individual items.
*/
public class PaginatedList extends GoPayResponse {
@SerializedName("items")
private List items;
@SerializedName("has_more")
private Boolean hasMore;
public List getItems() {
return items;
}
public Boolean getHasMore() {
return hasMore;
}
}