ULHotelAddress

data class ULHotelAddress(val streetAddress: String? = null, val postalCode: String? = null, val city: String? = null, val region: String? = null, val country: String? = null) : Serializable

Class to represent the address of a hotel

Constructors

Link copied to clipboard
fun ULHotelAddress(streetAddress: String? = null, postalCode: String? = null, city: String? = null, region: String? = null, country: String? = null)

Init method to create a ULHotelAddress object with the given parameters

Properties

Link copied to clipboard
val city: String? = null

City of the address

Link copied to clipboard
val country: String? = null

Country of the address

Link copied to clipboard
val postalCode: String? = null

Postal code of the address

Link copied to clipboard
val region: String? = null

Region of the address

Link copied to clipboard
val streetAddress: String? = null

Street of the address