BagContents

@Serializable
data class BagContents(val sacksBag: InventoryObject? = null, val potionBag: InventoryObject? = null, val talismanBag: InventoryObject? = null, val fishingBag: InventoryObject? = null, val quiver: InventoryObject? = null)

Constructors

Link copied to clipboard
constructor(sacksBag: InventoryObject? = null, potionBag: InventoryObject? = null, talismanBag: InventoryObject? = null, fishingBag: InventoryObject? = null, quiver: InventoryObject? = null)

Properties

Link copied to clipboard
@SerialName(value = "fishing_bag")
val fishingBag: InventoryObject? = null
Link copied to clipboard
@SerialName(value = "potion_bag")
val potionBag: InventoryObject? = null
Link copied to clipboard
val quiver: InventoryObject? = null
Link copied to clipboard
@SerialName(value = "sacks_bag")
val sacksBag: InventoryObject? = null
Link copied to clipboard
@SerialName(value = "talisman_bag")
val talismanBag: InventoryObject? = null