Continent

@Serializable
data class Continent(val id: Int, val name: String, val continentDims: Dimensions, val minZoom: Int, val maxZoom: Int, val floors: List<Int>)

Data model for Continents

Constructors

Link copied to clipboard
constructor(id: Int, name: String, continentDims: Dimensions, minZoom: Int, maxZoom: Int, floors: List<Int>)

Properties

Link copied to clipboard
@SerialName(value = "continent_dims")
val continentDims: Dimensions
Link copied to clipboard
Link copied to clipboard
val id: Int
Link copied to clipboard
@SerialName(value = "max_zoom")
val maxZoom: Int
Link copied to clipboard
@SerialName(value = "min_zoom")
val minZoom: Int
Link copied to clipboard