Stop Place Dto
@Serializable
@Xml(name = "StopPlace" )
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)