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())
Content copied to clipboard
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())
Content copied to clipboard