All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.gopay.sdk.models.response.PaginatedList Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy