com.univapay.sdk.models.response.PaginatedList Maven / Gradle / Ivy
package com.univapay.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 UnivapayResponse {
@SerializedName("items")
private List items;
@SerializedName("has_more")
private Boolean hasMore;
public List getItems() {
return items;
}
public Boolean getHasMore() {
return hasMore;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy