CountryInfo

data class CountryInfo(val name: String? = null, val displayName: String? = null, val twoLetterIsoRegionName: String? = null, val threeLetterIsoRegionName: String? = null)

Class CountryInfo.

Constructors

Link copied to clipboard
constructor(name: String? = null, displayName: String? = null, twoLetterIsoRegionName: String? = null, threeLetterIsoRegionName: String? = null)

Properties

Link copied to clipboard
val displayName: String? = null

The display name.

Link copied to clipboard
val name: String? = null

The name.

Link copied to clipboard

The name of the three letter ISO region.

Link copied to clipboard

The name of the two letter ISO region.