Auction

@Serializable
data class Auction(val name: String, val auctionId: Int, val level: Int, val world: String, val vocation: Vocation, val sex: Sex, val outfit: OutfitImage, val displayedItems: List<ItemEntry>, val salesArguments: List<SalesArgument>, val auctionStart: Instant, val auctionEnd: Instant, val bid: Int, val bidType: BidType, val status: AuctionStatus, val details: AuctionDetails?)(source)

An auction in the CharacterBazaar.

Constructors

Link copied to clipboard
constructor(name: String, auctionId: Int, level: Int, world: String, vocation: Vocation, sex: Sex, outfit: OutfitImage, displayedItems: List<ItemEntry>, salesArguments: List<SalesArgument>, auctionStart: Instant, auctionEnd: Instant, bid: Int, bidType: BidType, status: AuctionStatus, details: AuctionDetails?)

Properties

Link copied to clipboard
val auctionEnd: Instant

The date when the auction ends.

Link copied to clipboard

The ID of the auction.

Link copied to clipboard
val auctionStart: Instant

The date when the auction started.

Link copied to clipboard
val bid: Int

The current bid on the auction.

Link copied to clipboard

The type of bid.

Link copied to clipboard

URL to the character being sold.

Link copied to clipboard

The details of the auction.

Link copied to clipboard

A list of items selected for display.

Link copied to clipboard
val level: Int

The level of the character.

Link copied to clipboard

The name of the character on auction.

Link copied to clipboard

The current outfit the character is wearing.

Link copied to clipboard

Arguments selected by the auction author.

Link copied to clipboard
val sex: Sex

The character's sex.

Link copied to clipboard

The current status of the auction.

Link copied to clipboard
val url: String

URL to the auction.

Link copied to clipboard

The vocation of the character.

Link copied to clipboard

The world of the character.