AuctionsResponse

@Serializable
data class AuctionsResponse(val success: Boolean? = null, val cause: String? = null, val page: Int? = null, val totalPages: Int? = null, val totalAuctions: Int? = null, val lastUpdated: Long? = null, val auctions: List<Auction>? = null) : HypixelResponse

Information about current auctions

Constructors

Link copied to clipboard
constructor(success: Boolean? = null, cause: String? = null, page: Int? = null, totalPages: Int? = null, totalAuctions: Int? = null, lastUpdated: Long? = null, auctions: List<Auction>? = null)

Properties

Link copied to clipboard
val auctions: List<Auction>? = null

A list of Auction

Link copied to clipboard
open override val cause: String? = null

The cause of the error, if the request failed.

Link copied to clipboard
val lastUpdated: Long? = null

Timestamp of the last time auctions were updated

Link copied to clipboard
val page: Int? = null

The queried page of auctions

Link copied to clipboard
@Transient
open override var rateLimit: RateLimit?
Link copied to clipboard
open override val success: Boolean? = null

Whether the request was successful.

Link copied to clipboard
val totalAuctions: Int? = null

Total amount of auctions active

Link copied to clipboard
val totalPages: Int? = null

Total amount of pages available