ProfilesResponse

@Serializable
data class ProfilesResponse(val success: Boolean? = null, val cause: String? = null, val profiles: List<Profile>? = null) : HypixelResponse

Information about a player's profiles

Constructors

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

A list of the player's profiles

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.