Crystal

@Serializable
data class Crystal(val state: String? = null, val totalPlaced: Int? = null, val totalFound: Int? = null)

Constructors

Link copied to clipboard
constructor(state: String? = null, totalPlaced: Int? = null, totalFound: Int? = null)

Properties

Link copied to clipboard
val state: String? = null
Link copied to clipboard
@SerialName(value = "total_found")
val totalFound: Int? = null
Link copied to clipboard
@SerialName(value = "total_placed")
val totalPlaced: Int? = null