Auctioned

@Serializable
@SerialName(value = "AUCTIONED")
data class Auctioned(val houseId: Int, val name: String, val size: Int, val houseType: HouseType, val beds: Int, val rent: Int, val world: String, val highestBid: Int?, val highestBidder: String?, val auctionEnd: Instant?) : House(source)

An auctioned house or guildhall.

Constructors

Link copied to clipboard
constructor(houseId: Int, name: String, size: Int, houseType: HouseType, beds: Int, rent: Int, world: String, highestBid: Int?, highestBidder: String?, auctionEnd: Instant?)

Properties

Link copied to clipboard
val auctionEnd: Instant?

The date and time when the auction will end.

Link copied to clipboard
open override val beds: Int

The maximum amount of beds that can be placed in there.

Link copied to clipboard

If the house is on auction, the highest bid received, if any.

Link copied to clipboard

The character that placed the highest bid.

Link copied to clipboard

The URL to the information page of the highest bidder, if any.

Link copied to clipboard
open override val houseId: Int

The internal ID of the house.

Link copied to clipboard
open override val houseType: HouseType

The type of the house.

Link copied to clipboard
open val imageUrl: String

URL to the house's image.

Link copied to clipboard
open override val name: String

The name of the house.

Link copied to clipboard
open override val rent: Int

The monthly rent paid for this house in gold coins.

Link copied to clipboard
open override val size: Int

The size of the house in square meters (tiles).

Link copied to clipboard
open override val status: HouseStatus

The current status 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.