PostalAddress

@Serializable
data class PostalAddress(val languageTag: Rfc5646LanguageTag, val streetAddress: String, val countryCode: EtsiCountryCode, val locality: String? = null, val stateOrProvince: String? = null, val postalCode: String? = null)(source)

Constructors

Link copied to clipboard
constructor(languageTag: Rfc5646LanguageTag, streetAddress: String, countryCode: EtsiCountryCode, locality: String? = null, stateOrProvince: String? = null, postalCode: String? = null)

Types

Link copied to clipboard

Properties

Link copied to clipboard
@SerialName(value = "Country")
val countryCode: EtsiCountryCode
Link copied to clipboard
@SerialName(value = "lang")
val languageTag: Rfc5646LanguageTag
Link copied to clipboard
@SerialName(value = "Locality")
val locality: String?
Link copied to clipboard
@SerialName(value = "PostalCode")
val postalCode: String?
Link copied to clipboard
@SerialName(value = "StateOrProvince")
val stateOrProvince: String?
Link copied to clipboard
@SerialName(value = "StreetAddress")
val streetAddress: String