Sale

@Serializable
data class Sale(val itemId: String? = null, val start: Long? = null, val end: Long? = null, val amount: Int? = null, val price: Int? = null)

Information about a firesale

Constructors

Link copied to clipboard
constructor(itemId: String? = null, start: Long? = null, end: Long? = null, amount: Int? = null, price: Int? = null)

Properties

Link copied to clipboard
val amount: Int? = null

Amount of items available for purchase

Link copied to clipboard
val end: Long? = null

Timestamp of when the firesale ends

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

The item ID of the item

Link copied to clipboard
val price: Int? = null

Cost in gems for each item

Link copied to clipboard
val start: Long? = null

Timestamp of when the firesale begins