class ArrivalFlightStruct

Attributes

actualarrivaltime[RW]
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(actualarrivaltime = nil, actualdeparturetime = nil, aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, ident = nil, origin = nil, originCity = nil, originName = nil ) click to toggle source
# File lib/FlightXML2REST.rb, line 523
def initialize(actualarrivaltime = nil,
               actualdeparturetime = nil,
               aircrafttype = nil,
               destination = nil,
               destinationCity = nil,
               destinationName = nil,
               ident = nil,
               origin = nil,
               originCity = nil,
               originName = nil
              ) 
  @actualarrivaltime = actualarrivaltime
  @actualdeparturetime = actualdeparturetime
  @aircrafttype = aircrafttype
  @destination = destination
  @destinationCity = destinationCity
  @destinationName = destinationName
  @ident = ident
  @origin = origin
  @originCity = originCity
  @originName = originName
end