ItemSummary

@Serializable
data class ItemSummary(val currentPage: Int, val totalPages: Int, val resultsCount: Int, val entries: List<ItemEntry>, val isFullyFetched: Boolean) : AjaxPaginator<ItemEntry> (source)

A collection of items of an auctioned character.

Constructors

Link copied to clipboard
constructor(currentPage: Int, totalPages: Int, resultsCount: Int, entries: List<ItemEntry>, isFullyFetched: Boolean)

Properties

Link copied to clipboard
open override val currentPage: Int

The currently viewed page.

Link copied to clipboard
open override val entries: List<ItemEntry>

The entries in this page.

Link copied to clipboard
open override val isFullyFetched: Boolean

Whether this result set was fully fetched or not.

Link copied to clipboard
open override val resultsCount: Int

The total number of entries across all pages.

Link copied to clipboard
open override val totalPages: Int

The total number of pages.