InventorySlot

@Serializable
data class InventorySlot(val id: Int, val count: Int, val charges: Int? = null, val infusions: List<Int> = listOf(), val upgrades: List<Int> = listOf(), val upgradeSlotIndices: List<Int> = listOf(), val skin: Int? = null, val stats: ItemStats? = null, val dyes: List<Int?> = listOf(), val binding: ItemBinding? = null, val boundTo: String? = null)

Data model for inventory slots

Constructors

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

Properties

Link copied to clipboard
val binding: ItemBinding? = null
Link copied to clipboard
@SerialName(value = "bound_to")
val boundTo: String? = null
Link copied to clipboard
val charges: Int? = null
Link copied to clipboard
val count: Int
Link copied to clipboard
val dyes: List<Int?>
Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard
val skin: Int? = null
Link copied to clipboard
val stats: ItemStats? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "upgrade_slot_indices")
val upgradeSlotIndices: List<Int>