class DepartureFlightStruct
Attributes
actualarrivaltime[RW]
actualdeparturetime[RW]
aircrafttype[RW]
destination[RW]
destinationCity[RW]
destinationName[RW]
estimatedarrivaltime[RW]
ident[RW]
origin[RW]
originCity[RW]
originName[RW]
Public Class Methods
new(actualarrivaltime = nil, actualdeparturetime = nil, aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, ident = nil, origin = nil, originCity = nil, originName = nil )
click to toggle source
# File lib/FlightXML2REST.rb, line 782 def initialize(actualarrivaltime = nil, actualdeparturetime = nil, aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, ident = nil, origin = nil, originCity = nil, originName = nil ) @actualarrivaltime = actualarrivaltime @actualdeparturetime = actualdeparturetime @aircrafttype = aircrafttype @destination = destination @destinationCity = destinationCity @destinationName = destinationName @estimatedarrivaltime = estimatedarrivaltime @ident = ident @origin = origin @originCity = originCity @originName = originName end