Game

@Serializable
data class Game(val id: Int? = null, val name: String? = null, val databaseName: String? = null, val modeNames: Map<String, String>? = null, val legacy: Boolean? = null, val retired: Boolean? = null)

Constructors

Link copied to clipboard
constructor(id: Int? = null, name: String? = null, databaseName: String? = null, modeNames: Map<String, String>? = null, legacy: Boolean? = null, retired: Boolean? = null)

Properties

Link copied to clipboard
val databaseName: String? = null
Link copied to clipboard
val id: Int? = null
Link copied to clipboard
val legacy: Boolean? = null
Link copied to clipboard
val modeNames: Map<String, String>? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val retired: Boolean? = null