GameItem

data class GameItem(    val sku: String = "",     val name: String? = null,     val groups: List<Group> = emptyList(),     val attributes: List<GameAttribute> = emptyList(),     val type: String? = null,     val unitType: String? = null,     val description: String? = null,     val imageUrl: String? = null,     val unitItem: List<GameUnitItem> = emptyList())

Constructors

Link copied to clipboard
fun GameItem(    sku: String = "",     name: String? = null,     groups: List<Group> = emptyList(),     attributes: List<GameAttribute> = emptyList(),     type: String? = null,     unitType: String? = null,     description: String? = null,     imageUrl: String? = null,     unitItem: List<GameUnitItem> = emptyList())

Properties

Link copied to clipboard
val attributes: List<GameAttribute>
Link copied to clipboard
val description: String? = null
Link copied to clipboard
val groups: List<Group>
Link copied to clipboard
@SerializedName(value = "image_url")
val imageUrl: String? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val sku: String
Link copied to clipboard
val type: String? = null
Link copied to clipboard
val unitItem: List<GameUnitItem>
Link copied to clipboard
@SerializedName(value = "unit_type")
val unitType: String? = null

Sources

Link copied to clipboard