Bid

@Serializable
data class Bid(val auctionId: String? = null, val bidder: String? = null, val profileId: String? = null, val amount: Long? = null, val timestamp: Long? = null)

Information about a bid on an auction

Constructors

Link copied to clipboard
constructor(auctionId: String? = null, bidder: String? = null, profileId: String? = null, amount: Long? = null, timestamp: Long? = null)

Properties

Link copied to clipboard
val amount: Long? = null

Price bid

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

UUID of the auction the bid was on

Link copied to clipboard
val bidder: String? = null

UUID of the bidder

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

UUID of the bidder's profile

Link copied to clipboard
val timestamp: Long? = null

Timestamp of when the bid was made