GardenResponse

@Serializable
data class GardenResponse(val success: Boolean? = null, val cause: String? = null, val garden: Garden? = null) : HypixelResponse

Information about a player's Garden.

Constructors

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

Information about the Garden.

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.