BingoResponse

@Serializable
data class BingoResponse(val success: Boolean? = null, val cause: String? = null, val lastUpdated: Long? = null, val id: Int? = null, val name: String? = null, val start: Long? = null, val end: Long? = null, val modifier: String? = null, val goals: List<Goal>? = null) : HypixelResponse

Information about the most recent Bingo.

Constructors

Link copied to clipboard
constructor(success: Boolean? = null, cause: String? = null, lastUpdated: Long? = null, id: Int? = null, name: String? = null, start: Long? = null, end: Long? = null, modifier: String? = null, goals: List<Goal>? = 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 end: Long? = null

Timestamp of the Bingo event's end.

Link copied to clipboard
val goals: List<Goal>? = null

A list of Goal information.

Link copied to clipboard
val id: Int? = null

Integer ID of the Bingo event.

Link copied to clipboard
val lastUpdated: Long? = null

Timestamp of when Bingo was last modified.

Link copied to clipboard
val modifier: String? = null

What type of Bingo event it is.

Link copied to clipboard
val name: String? = null

Name of the Bingo event.

Link copied to clipboard
@Transient
open override var rateLimit: RateLimit?
Link copied to clipboard
val start: Long? = null

Timestamp of the Bingo event's start.

Link copied to clipboard
open override val success: Boolean? = null

Whether the request was successful.