Country

data class Country(var countryCode: String? = null, var name: String? = null)

Represents country details in a place response.

Constructors

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

Properties

Link copied to clipboard

The country code, if available.

Link copied to clipboard
var name: String?

The country name, if available.