Address

class Address(encodedAddress: String) : Parcelable

Represents an address with house number and street name.

Constructors

Address
Link copied to clipboard
fun Address(encodedAddress: String)

Types

Companion
Link copied to clipboard
object Companion

Functions

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

Properties

city
Link copied to clipboard
var city: String? = null
countryCode
Link copied to clipboard
var countryCode: String? = null
encodedAddress
Link copied to clipboard
val encodedAddress: String
houseNumber
Link copied to clipboard
var houseNumber: String? = null
postalCode
Link copied to clipboard
var postalCode: String? = null
state
Link copied to clipboard
var state: String? = null
street
Link copied to clipboard
var street: String? = null
suburb
Link copied to clipboard
var suburb: String? = null