Address Dto
@Serializable
@Xml(name = "Address" )
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 = "PublicCode" ) publicCode: String, @Element(name = "Name" ) name: NameDto, @Element(name = "NameSuffix" ) nameSuffix: NameDto? = null, @PropertyElement(name = "CountryName" ) countryName: String? = null, @PropertyElement(name = "PostCode" ) postCode: String? = null, @Element(name = "TopographicPlaceName" ) topographicPlaceName: NameDto? = null, @PropertyElement(name = "TopographicPlaceRef" ) topographicPlaceRef: String? = null, @PropertyElement(name = "Street" ) street: String? = null, @PropertyElement(name = "HouseNumber" ) houseNumber: String? = null, @PropertyElement(name = "CrossRoad" ) crossRoad: String? = null)