SpeciesInfo

@Serializable
data class SpeciesInfo(val species: String, val count: Int)

A species entry with its user count.

Constructors

Link copied to clipboard
constructor(species: String, count: Int)

Properties

Link copied to clipboard
@SerialName(value = "count")
val count: Int
Link copied to clipboard
@SerialName(value = "species")
val species: String