InventoryResponse
data class InventoryResponse(val items: List<InventoryResponse.Item> = emptyList())
Content copied to clipboard
Constructors
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
Content copied to clipboard