dexcare
/
org.dexcare.services.patient.models
/
Address
Address
data class
Address
(line1:
String
, line2:
String
?, city:
String
, state:
String
, postalCode:
String
) :
Parcelable
Content copied to clipboard
A representation of an address.
Constructors
Functions
Properties
Constructors
Address
Link copied to clipboard
fun
Address
(line1:
String
, line2:
String
?, city:
String
, state:
String
, postalCode:
String
)
Content copied to clipboard
Functions
describeContents
Link copied to clipboard
abstract fun
describeContents
():
Int
Content copied to clipboard
toString
Link copied to clipboard
open override fun
toString
():
String
Content copied to clipboard
writeToParcel
Link copied to clipboard
abstract fun
writeToParcel
(p0:
Parcel
, p1:
Int
)
Content copied to clipboard
Properties
city
Link copied to clipboard
val
city
:
String
Content copied to clipboard
The city of the address.
line1
Link copied to clipboard
val
line1
:
String
Content copied to clipboard
The street address.
line2
Link copied to clipboard
val
line2
:
String
?
Content copied to clipboard
An optional second line for the address.
postalCode
Link copied to clipboard
val
postalCode
:
String
Content copied to clipboard
The postal code (zip code) of the address.
state
Link copied to clipboard
val
state
:
String
Content copied to clipboard
The state of the address.