GameAttribute

data class GameAttribute(    val externalId: String? = null,     val name: String? = null,     val values: List<GameAttributeValue> = emptyList())

Constructors

Link copied to clipboard
fun GameAttribute(    externalId: String? = null,     name: String? = null,     values: List<GameAttributeValue> = emptyList())

Properties

Link copied to clipboard
@SerializedName(value = "external_id")
val externalId: String? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val values: List<GameAttributeValue>

Sources

Link copied to clipboard