Outfits

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

The outfits of a character in an Auction.

Constructors

Link copied to clipboard
constructor(currentPage: Int, totalPages: Int, resultsCount: Int, entries: List<OutfitEntry>, 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<OutfitEntry>

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.