Mounts

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

The mounts owned by an Auction character.

Constructors

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

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.