GardenPlayerData

@Serializable
data class GardenPlayerData(val copper: Int? = null, val larvaConsumed: Int? = null, val analyzedGreenhouseCrops: List<String>? = null, val discoveredGreenhouseCrops: List<String>? = null)

Constructors

Link copied to clipboard
constructor(copper: Int? = null, larvaConsumed: Int? = null, analyzedGreenhouseCrops: List<String>? = null, discoveredGreenhouseCrops: List<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "analyzed_greenhouse_crops")
val analyzedGreenhouseCrops: List<String>? = null
Link copied to clipboard
val copper: Int? = null
Link copied to clipboard
@SerialName(value = "discovered_greenhouse_crops")
val discoveredGreenhouseCrops: List<String>? = null
Link copied to clipboard
@SerialName(value = "larva_consumed")
val larvaConsumed: Int? = null