All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.kryszak.gwatlin.api.mapinfo.model.PointOfInterest.kt Maven / Gradle / Ivy

package io.github.kryszak.gwatlin.api.mapinfo.model

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
 * Data model for points of interest, aka "POI"
 */
@Serializable
data class PointOfInterest(
    val id: Int,
    val name: String? = null,
    val type: PointOfInterestType,
    val floor: Int,
    val coord: Coordinates,
    @SerialName("chat_link")
    val chatLink: String,
    val icon: String? = null
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy