HousingHouseResponse

@Serializable
data class HousingHouseResponse(val success: Boolean? = null, val cause: String? = null, val house: House? = null) : HypixelResponse

Information about a House.

Constructors

Link copied to clipboard
constructor(success: Boolean? = null, cause: String? = null, house: House? = 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 house: House? = null

The House details.

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.