InventoryResponse

data class InventoryResponse(val items: List<InventoryResponse.Item> = emptyList())

Constructors

Link copied to clipboard
fun InventoryResponse(items: List<InventoryResponse.Item> = emptyList())

Types

Link copied to clipboard
data class Item(    val instanceId: String? = null,     val sku: String? = null,     val type: InventoryResponse.Item.Type? = null,     val name: String? = null,     val quantity: Long? = null,     val description: String? = null,     val imageUrl: String? = null,     val groups: List<Group> = emptyList(),     val attributes: List<ItemAttributes>,     val remainingUses: Long? = null,     val virtualItemType: InventoryResponse.Item.VirtualItemType? = null) : Parcelable

Properties

Link copied to clipboard
val items: List<InventoryResponse.Item>

Sources

Link copied to clipboard