GW2v2Continent

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

Information about a continent.

Parameters

id

the continent's ID

name

the continent's name

continentDims

the width and height of the continent

minZoom

the minimal zoom level for use with the map tile service

maxZoom

the maximum zoom level for use with the map tile service

floors

the IDs of the continent's floors

Constructors

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

Properties

Link copied to clipboard
@SerialName(value = "continent_dims")
val continentDims: List<Int>

This field holds the width and height of the continent.

Link copied to clipboard

This field holds the IDs of the continent's floors.

Link copied to clipboard
val id: Int

This field holds the continent's ID.

Link copied to clipboard
@SerialName(value = "max_zoom")
val maxZoom: Int

This field holds the maximum zoom level for use with the map tile service.

Link copied to clipboard
@SerialName(value = "min_zoom")
val minZoom: Int

This field holds the minimal zoom level for use with the map tile service.

Link copied to clipboard

This field holds the continent's name.