LegDto

@Xml(name = "Leg")
data class LegDto(@PropertyElement(name = "Id") val id: String, @PropertyElement(name = "Duration") val duration: Duration?, @Element(name = "TimedLeg") val timedLeg: TimedLegDto? = null, @Element(name = "TransferLeg") val transferLeg: TransferLegDto? = null, @Element(name = "ContinuousLeg") val continuousLeg: ContinuousLegDto? = null) : Parcelable

Created by Michael Ruppen on 28.06.2024

Constructors

Link copied to clipboard
constructor(@PropertyElement(name = "Id") id: String, @PropertyElement(name = "Duration") duration: Duration?, @Element(name = "TimedLeg") timedLeg: TimedLegDto? = null, @Element(name = "TransferLeg") transferLeg: TransferLegDto? = null, @Element(name = "ContinuousLeg") continuousLeg: ContinuousLegDto? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
val timedLeg: TimedLegDto? = null
Link copied to clipboard

Functions

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