Familiars

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

The familiars of a character in an Auction.

Constructors

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

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.