p
root package
package root
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
case class
Flight(legId: String, searchMonth: Int, flightMonth: Int, startingAirport: String, destinationAirport: String, fareBasisCode: String, travelDuration: String, elapsedDays: Int, isBasicEconomy: Boolean, isRefundable: Boolean, isNonStop: Boolean, baseFare: Double, totalFare: Double, seatsRemaining: Int, totalTravelDistance: Double, segmentsDepartureTimeEpochSeconds: String, segmentsDepartureTimeRaw: String, segmentsArrivalTimeEpochSeconds: String, segmentsArrivalTimeRaw: String, segmentsArrivalAirportCode: String, segmentsDepartureAirportCode: String, segmentsAirlineName: String, segmentsAirlineCode: String, segmentsEquipmentDescription: String, segmentsDurationInSeconds: String, segmentsDistance: String, segmentsCabinCode: String) extends Serializable with Product
Flight case class.
Value Members
-
object
FlightParser extends Serializable
Flight parser.
-
object
MainApplication
Main application to run the jobs.
Flight case class.
The unique identifier for the flight.
The month in which the search was conducted.
The month in which the flight is scheduled.
The airport code IATA for the departure location.
The airport code IATA for the arrival location.
The fare basis code for the flight.
The total duration of the flight.
The number of days elapsed.
Whether the flight is a basic economy flight.
Whether the flight is refundable.
Whether the flight is non-stop.
The base fare for the flight.
The total fare for the flight, including taxes and other fees.
The number of seats remaining on the flight.
The total distance of the flight.
The departure time of each segment expressed as epoch seconds.
The departure time of each segment in raw format.
The arrival time of each segment expressed as epoch seconds.
The arrival time of each segment in raw format.
The airport code IATA for the arrival location of each segment.
The airport code IATA for the departure location of each segment.
The name of the airline for each segment.
The code of the airline for each segment.
The description of the equipment for each segment.
The duration of each segment in seconds.
The distance of each segment.
The cabin code for each segment.