BazaarResponse

@Serializable
data class BazaarResponse(val success: Boolean? = null, val cause: String? = null, val lastUpdated: Long? = null, val products: Map<String, Product>? = null) : HypixelResponse

Information about the Bazaar

Constructors

Link copied to clipboard
constructor(success: Boolean? = null, cause: String? = null, lastUpdated: Long? = null, products: Map<String, Product>? = null)

Properties

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 when the Bazaar was last updated.

Link copied to clipboard
val products: Map<String, Product>? = null

A list of Product in the Bazaar.

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.

Functions

Link copied to clipboard