Package-level declarations

Types

Link copied to clipboard
@Serializable
@Xml(name = "GeoPosition")
data class GeoPositionDto(@PropertyElement(name = "siri:Longitude") val longitude: Double, @PropertyElement(name = "siri:Latitude") val latitude: Double) : Parcelable

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "Mode")
data class ModeDto(@PropertyElement(name = "PtMode") val ptMode: PtMode, @Element(name = "Name") val name: NameDto?) : Parcelable

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "Name")
data class NameDto(@PropertyElement(name = "Text") val text: String?) : Parcelable

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "Place")
data class PlaceDto(@Element(name = "StopPoint") val stopPoint: StopPointDto? = null, @Element(name = "StopPlace") val stopPlace: StopPlaceDto? = null, @Element(name = "TopographicPlace") val topographicPlace: TopographicPlaceDto? = null, @Element(name = "PointOfInterest") val pointOfInterest: PointOfInterestDto? = null, @Element(name = "Address") val address: AddressDto? = null, @Element(name = "Name") val name: NameDto? = null, @Element(name = "GeoPosition") val position: GeoPositionDto? = null, @Element(name = "Mode") val mode: List<ModeDto>? = emptyList()) : Parcelable

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "PlaceResult")
data class PlaceResultDto(@Element(name = "Place") val place: PlaceDto? = null, @PropertyElement(name = "Complete") val complete: Boolean, @PropertyElement(name = "Probability") val probability: Double?) : Parcelable

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "Places")
data class PlacesDto(@Element(name = "Place") val places: List<PlaceDto>? = emptyList()) : Parcelable

Created by Deniz Kalem on 26.03.2025

Link copied to clipboard
@Serializable
@Xml(name = "PrivateCode")
data class PrivateCodeDto(@PropertyElement(name = "System") val system: String, @PropertyElement(name = "Value") val value: String) : Parcelable

Created by Michael Ruppen on 26.04.2024