ULItineraryPort

data class ULItineraryPort(val portId: Int? = null, val portName: String? = null, val activities: ArrayList<ULActivity>? = null, val arrivalDate: String? = null, val departureDate: String? = null) : Serializable

Class to represent an itinerary port

Constructors

Link copied to clipboard
fun ULItineraryPort(portId: Int? = null, portName: String? = null, activities: ArrayList<ULActivity>? = null, arrivalDate: String? = null, departureDate: String? = null)

Init method to create a ULItineraryPort object with the given parameters

Properties

Link copied to clipboard

List of activities attached to the itinerary port

Link copied to clipboard
val arrivalDate: String? = null

Arrival date

Link copied to clipboard
val departureDate: String? = null

Departure date

Link copied to clipboard
val portId: Int? = null

Id of the itinerary port

Link copied to clipboard
val portName: String? = null

Name of the itinerary port