CountryDataPoint

@Serializable
data class CountryDataPoint(val name: String? = null, val countryCode: String? = null)

Constructors

Link copied to clipboard
constructor(name: String? = null, countryCode: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "country_code")
val countryCode: String? = null
Link copied to clipboard
@SerialName(value = "name")
val name: String? = null