PointOfInterest

@Serializable
data class PointOfInterest(val id: Int, val name: String? = null, val type: PointOfInterestType, val floor: Int, val coord: Coordinates, val chatLink: String, val icon: String? = null)

Data model for points of interest, aka "POI"

Constructors

Link copied to clipboard
constructor(id: Int, name: String? = null, type: PointOfInterestType, floor: Int, coord: Coordinates, chatLink: String, icon: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "chat_link")
val chatLink: String
Link copied to clipboard
Link copied to clipboard
val floor: Int
Link copied to clipboard
val icon: String? = null
Link copied to clipboard
val id: Int
Link copied to clipboard
val name: String? = null
Link copied to clipboard