Auctions

@Serializable
data class Auctions(val bids: Double? = null, val highestBid: Double? = null, val won: Double? = null, val totalBought: Map<String, Double>? = null, val goldSpent: Double? = null, val created: Double? = null, val fees: Double? = null, val completed: Double? = null, val totalSold: Map<String, Double>? = null, val goldEarned: Double? = null, val noBids: Double? = null)

Constructors

Link copied to clipboard
constructor(bids: Double? = null, highestBid: Double? = null, won: Double? = null, totalBought: Map<String, Double>? = null, goldSpent: Double? = null, created: Double? = null, fees: Double? = null, completed: Double? = null, totalSold: Map<String, Double>? = null, goldEarned: Double? = null, noBids: Double? = null)

Properties

Link copied to clipboard
val bids: Double? = null
Link copied to clipboard
val completed: Double? = null
Link copied to clipboard
val created: Double? = null
Link copied to clipboard
val fees: Double? = null
Link copied to clipboard
@SerialName(value = "gold_earned")
val goldEarned: Double? = null
Link copied to clipboard
@SerialName(value = "gold_spent")
val goldSpent: Double? = null
Link copied to clipboard
@SerialName(value = "highest_bid")
val highestBid: Double? = null
Link copied to clipboard
@SerialName(value = "no_bids")
val noBids: Double? = null
Link copied to clipboard
@SerialName(value = "total_bought")
val totalBought: Map<String, Double>? = null
Link copied to clipboard
@SerialName(value = "total_sold")
val totalSold: Map<String, Double>? = null
Link copied to clipboard
val won: Double? = null