ULHotel Reservation
data class ULHotelReservation(val numberOfRooms: Int? = null, val address: ULHotelAddress? = null, val reservationType: String? = null, val ticketType: String? = null, val hotelName: String? = null, val checkIn: Date? = null, val checkOut: Date? = null, val price: Int? = null, val insurances: ArrayList<ULInsurance>? = null, val travelers: ArrayList<ULTraveler>? = null) : Serializable
Class to represent a hotel reservation.
Constructors
Link copied to clipboard
fun ULHotelReservation(numberOfRooms: Int? = null, address: ULHotelAddress? = null, reservationType: String? = null, ticketType: String? = null, hotelName: String? = null, checkIn: Date? = null, checkOut: Date? = null, price: Int? = null, insurances: ArrayList<ULInsurance>? = null, travelers: ArrayList<ULTraveler>? = null)
Init method to create a ULHotelReservation object with the given parameters