CharacterHouse

@Serializable
data class CharacterHouse(val name: String, val houseId: Int, val town: String, val paidUntil: LocalDate, val world: String) : BaseHouse(source)

A house owned by a Character.

Constructors

Link copied to clipboard
constructor(name: String, houseId: Int, town: String, paidUntil: LocalDate, world: String)

Properties

Link copied to clipboard
open override val houseId: Int

The internal ID of the house.

Link copied to clipboard
open val imageUrl: String

URL to the house's image.

Link copied to clipboard

The name of the house.

Link copied to clipboard

The date when the last paid rent is due.

Link copied to clipboard

The town where the city is or is closest to.

Link copied to clipboard
open val url: String

The URL to the house's information page.

Link copied to clipboard
open override val world: String

The world where this house is located.