InventoryItem

@Serializable
data class InventoryItem(val id: Int, val count: Int, val charges: Int? = null, val skin: Int? = null, val upgrades: List<Int> = listOf(), val infusions: List<Int> = listOf(), val binding: String? = null)

Data model for inventory object

Constructors

Link copied to clipboard
constructor(id: Int, count: Int, charges: Int? = null, skin: Int? = null, upgrades: List<Int> = listOf(), infusions: List<Int> = listOf(), binding: String? = null)

Properties

Link copied to clipboard
val binding: String? = null
Link copied to clipboard
val charges: Int? = null
Link copied to clipboard
val count: Int
Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard
val skin: Int? = null
Link copied to clipboard