StopPlaceDto

@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

Serializable and Parcelize annotation is both needed for compose navigation with custom types

Constructors

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

Properties

Link copied to clipboard
val covered: Boolean? = null
Link copied to clipboard
val lighting: Boolean? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val privateCodes: List<PrivateCodeDto>?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)