Level

data class Level(val levelId: String, val levelIndex: Double, val levelName: String? = null)(source)

Levels in a station.

This class represents a record in the levels.txt file.

Constructors

Link copied to clipboard
constructor(levelId: String, levelIndex: Double, levelName: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "level_id")
val levelId: String

Uniquely identifies a level in a station.

Link copied to clipboard
@SerialName(value = "level_index")
val levelIndex: Double

Numeric index of the level relative to ground level.

Link copied to clipboard
@SerialName(value = "level_name")
val levelName: String?

Name of the level.