EndedAuction

@Serializable
data class EndedAuction(val auctionId: String? = null, val seller: String? = null, val sellerProfile: String? = null, val buyer: String? = null, val buyerProfile: String? = null, val timestamp: Long? = null, val price: Int? = null, val bin: Boolean? = null, val item: String? = null)

Information about an ended auction.

Constructors

Link copied to clipboard
constructor(auctionId: String? = null, seller: String? = null, sellerProfile: String? = null, buyer: String? = null, buyerProfile: String? = null, timestamp: Long? = null, price: Int? = null, bin: Boolean? = null, item: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "auction_id")
val auctionId: String? = null

UUID of the auction.

Link copied to clipboard
val bin: Boolean? = null

Whether or not the auction was a BIN auction.

Link copied to clipboard
val buyer: String? = null

UUID of the buyer.

Link copied to clipboard
@SerialName(value = "buyer_profile")
val buyerProfile: String? = null

UUID of the buyer's profile.

Link copied to clipboard
@SerialName(value = "item_bytes")
val item: String? = null

Item data of the auctioned item.

Link copied to clipboard
val price: Int? = null

The price the auction was or ended at.

Link copied to clipboard
val seller: String? = null

UUID of the seller.

Link copied to clipboard
@SerialName(value = "seller_profile")
val sellerProfile: String? = null

UUID of the seller's profile.

Link copied to clipboard
val timestamp: Long? = null

Timestamp of when the auction ended or was purchased.