CountryDetails

data class CountryDetails(name: String, continentName: String, iso: String, regions: List<String>, totalSize: Long, version: MapVersion) : Parcelable

Class representing details about the country.

Parameters

name

title of the map

continentName

title of the continent, in which the country is placed

iso

ISO code of the country

regions

ISO codes of the country regions

totalSize

size of country specific + all region files(if country is CSM), in bytes

version

Version of map for this country.

Constructors

CountryDetails
Link copied to clipboard
fun CountryDetails(name: String, continentName: String, iso: String, regions: List<String>, totalSize: Long, version: MapVersion)
title of the map

Functions

describeContents
Link copied to clipboard
abstract fun describeContents(): Int
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

continentName
Link copied to clipboard
val continentName: String
title of the continent, in which the country is placed
iso
Link copied to clipboard
val iso: String
ISO code of the country
name
Link copied to clipboard
val name: String
title of the map
regions
Link copied to clipboard
val regions: List<String>
ISO codes of the country regions
totalSize
Link copied to clipboard
val totalSize: Long
size of country specific + all region files(if country is CSM), in bytes
version
Link copied to clipboard
val version: MapVersion
Version of map for this country.