Package-level declarations

Types

Link copied to clipboard
@Serializable
abstract class AbstractPlaceDto : Parcelable

Created by Michael Ruppen on 15.05.2024

Link copied to clipboard
@Serializable
@Xml(name = "Address")
data class AddressDto(@Element(name = "PrivateCode") val privateCodes: List<PrivateCodeDto>? = emptyList(), @PropertyElement(name = "PublicCode") val publicCode: String, @Element(name = "Name") val name: NameDto, @Element(name = "NameSuffix") val nameSuffix: NameDto? = null, @PropertyElement(name = "CountryName") val countryName: String? = null, @PropertyElement(name = "PostCode") val postCode: String? = null, @Element(name = "TopographicPlaceName") val topographicPlaceName: NameDto? = null, @PropertyElement(name = "TopographicPlaceRef") val topographicPlaceRef: String? = null, @PropertyElement(name = "Street") val street: String? = null, @PropertyElement(name = "HouseNumber") val houseNumber: String? = null, @PropertyElement(name = "CrossRoad") val crossRoad: String? = null) : AbstractPlaceDto

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "PointOfInterest")
data class PointOfInterestDto(@Element(name = "PrivateCode") val privateCodes: List<PrivateCodeDto>? = emptyList(), @PropertyElement(name = "PublicCode") val publicCode: String, @Element(name = "Name") val name: NameDto, @Element(name = "NameSuffix") val nameSuffix: NameDto?, @PropertyElement(name = "TopographicPlaceRef") val topographicPlaceRef: String?) : AbstractPlaceDto

Created by Deniz Kalem on 25.03.2025

Link copied to clipboard
@Serializable
@Xml(name = "StopPlace")
data class StopPlaceDto(@Element(name = "PrivateCode") val privateCodes: List<PrivateCodeDto>? = emptyList(), @PropertyElement(name = "StopPlaceRef") val stopPlaceRef: String, @Element(name = "StopPlaceName") val name: NameDto?, @Element(name = "NameSuffix") val nameSuffix: NameDto?, @PropertyElement(name = "TopographicPlaceRef") val topographicPlaceRef: String? = null, @PropertyElement(name = "WheelchairAccessible") val wheelchairAccessible: Boolean? = null, @PropertyElement(name = "Lighting") val lighting: Boolean? = null, @PropertyElement(name = "Covered") val covered: Boolean? = null) : AbstractPlaceDto

Created by Michael Ruppen on 08.04.2024

Link copied to clipboard
@Serializable
@Xml(name = "StopPoint")
data class StopPointDto(@Element(name = "PrivateCode") val privateCodes: List<PrivateCodeDto>? = emptyList(), @PropertyElement(name = "siri:StopPointRef") val stopPointRef: String, @Element(name = "StopPointName") val stopPointName: NameDto?, @Element(name = "NameSuffix") val nameSuffix: NameDto?, @Element(name = "PlannedQuay") val plannedQuay: NameDto?, @Element(name = "EstimatedQuay") val estimatedQuay: NameDto?, @PropertyElement(name = "ParentRef") val parentRef: String?, @PropertyElement(name = "TopographicPlaceRef") val topographicPlaceRef: String?, @PropertyElement(name = "WheelchairAccessible") val wheelchairAccessible: Boolean?, @PropertyElement(name = "Lighting") val lighting: Boolean?, @PropertyElement(name = "Covered") val covered: Boolean?) : AbstractPlaceDto

Created by Deniz Kalem on 25.03.2025

Link copied to clipboard
@Serializable
@Xml(name = "TopographicPlace")
data class TopographicPlaceDto(@Element(name = "PrivateCode") val privateCodes: List<PrivateCodeDto>? = emptyList(), @PropertyElement(name = "TopographicPlaceRef") val ref: String? = null, @Element(name = "TopographicPlaceName") val name: NameDto) : AbstractPlaceDto

Created by Deniz Kalem on 25.03.2025