HouseEntry

@Serializable
data class HouseEntry(val houseId: Int, val name: String, val size: Int, val rent: Int, val town: String, val world: String, val type: HouseType, val status: HouseStatus, val highestBid: Int?, val timeLeft: Duration?) : BaseHouse(source)

A listed house in the Houses Section of tibia.com.

Constructors

Link copied to clipboard
constructor(houseId: Int, name: String, size: Int, rent: Int, town: String, world: String, type: HouseType, status: HouseStatus, highestBid: Int?, timeLeft: Duration?)

Properties

Link copied to clipboard

The current highest bid of this house, if it is being auctioned.

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
val rent: Int

The monthly rent paid for this house.

Link copied to clipboard
val size: Int

The size of the house in SQM.

Link copied to clipboard

The current status of the house.

Link copied to clipboard

The remaining time for the auction to end. Note that the resolution of this is either days or hours.

Link copied to clipboard

The town where this house is located or closest too.

Link copied to clipboard

The type of the house.

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.