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