AuctionsEndedResponse

@Serializable
data class AuctionsEndedResponse(val success: Boolean? = null, val cause: String? = null, val auctions: List<EndedAuction>? = null) : HypixelResponse

Information about the recently ended auctions.

Constructors

Link copied to clipboard
constructor(success: Boolean? = null, cause: String? = null, auctions: List<EndedAuction>? = null)

Properties

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

A list of EndedAuction for the past minute.

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

The cause of the error, if the request failed.

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.