House

@Serializable
data class House(val uuid: String? = null, val owner: String? = null, val name: String? = null, val createdAt: Long? = null, val players: Int? = null, val cookies: Cookies? = null)

House information

Constructors

Link copied to clipboard
constructor(uuid: String? = null, owner: String? = null, name: String? = null, createdAt: Long? = null, players: Int? = null, cookies: Cookies? = null)

Properties

Link copied to clipboard
val cookies: Cookies? = null

The Cookies statistics for the house.

Link copied to clipboard
val createdAt: Long? = null

The timestamp when the house was created.

Link copied to clipboard
val name: String? = null

The display name of the house.

Link copied to clipboard
val owner: String? = null

The UUID of the player who owns the house.

Link copied to clipboard
val players: Int? = null

The current number of players in the house.

Link copied to clipboard
val uuid: String? = null

The UUID of the house.