Country Details
data class CountryDetails(val name: String, val continentName: String, val iso: String, val regions: List<String>, val totalSize: Long, val version: MapVersion) : Parcelable
Class representing details about the country.
Parameters
name
title of the map
continent Name
title of the continent, in which the country is placed
iso
ISO code of the country
regions
ISO codes of the country regions
total Size
size of country specific + all region files(if country is CSM), in bytes
version
Version of map for this country.
Constructors
Link copied to clipboard
fun CountryDetails(name: String, continentName: String, iso: String, regions: List<String>, totalSize: Long, version: MapVersion)