Address

@JsonClass(generateAdapter = true)
data class Address(    val country_name: String?,     val locality: String?,     val postal_code: String?,     val region: String?,     val street_address: String?,     val post_office_box: String?,     val extended_address: String?,     val additional_properties: Map<String, *>?)

Address @JsonClass(generateAdapter = true) data class following the convention of http://microformats.org/wiki/hcard

Constructors

Link copied to clipboard
fun Address(    country_name: String?,     locality: String?,     postal_code: String?,     region: String?,     street_address: String?,     post_office_box: String?,     extended_address: String?,     additional_properties: Map<String, *>?)

populates immutable fields

Properties

Link copied to clipboard
val additional_properties: Map<String, *>?

A grab-bag object for non-validatable data.

Link copied to clipboard
val country_name: String?

Country Name

Link copied to clipboard
val extended_address: String?

Extended Address

Link copied to clipboard
val locality: String?

City/Town

Link copied to clipboard
val post_office_box: String?

PO Box

Link copied to clipboard
val postal_code: String?

Zip/Postal Code

Link copied to clipboard
val region: String?

Region/State

Link copied to clipboard
val street_address: String?

Street Address