RegionDetails

data class RegionDetails(name: String, iso: String, size: Long, version: MapVersion) : Parcelable

Class representing details about the region of a country.

Parameters

name

Title of the country region

iso

Iso code of the country region

size

Size of region files in bytes

version

Version of map for this region, should be the same as version for country in which this region is placed.

Constructors

RegionDetails
Link copied to clipboard
fun RegionDetails(name: String, iso: String, size: Long, version: MapVersion)
Title of the country region

Functions

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

Properties

iso
Link copied to clipboard
val iso: String
Iso code of the country region
name
Link copied to clipboard
val name: String
Title of the country region
size
Link copied to clipboard
val size: Long
Size of region files in bytes
version
Link copied to clipboard
val version: MapVersion
Version of map for this region, should be the same as version for country in which this region is placed.