GemstoneCost

@Serializable
data class GemstoneCost(val type: String? = null, val itemId: String? = null, val amount: Int? = null, val coins: Int? = null, val essenceType: EssenceType? = null)

Information about the cost for a gemstone slot

Constructors

Link copied to clipboard
constructor(type: String? = null, itemId: String? = null, amount: Int? = null, coins: Int? = null, essenceType: EssenceType? = null)

Properties

Link copied to clipboard
val amount: Int? = null

Amount of the item/essence required

Link copied to clipboard
val coins: Int? = null

Amount of coins required

Link copied to clipboard
@SerialName(value = "essence_type")
val essenceType: EssenceType? = null

Type of essence required

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

Item ID of the item required

Link copied to clipboard
val type: String? = null

Type of cost (ITEM, COINS)