class ScheduledFlightStruct

Attributes

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(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 996
def initialize(aircrafttype = nil,
               destination = nil,
               destinationCity = nil,
               destinationName = nil,
               estimatedarrivaltime = nil,
               filed_departuretime = nil,
               ident = nil,
               origin = nil,
               originCity = nil,
               originName = nil
              ) 
  @aircrafttype = aircrafttype
  @destination = destination
  @destinationCity = destinationCity
  @destinationName = destinationName
  @estimatedarrivaltime = estimatedarrivaltime
  @filed_departuretime = filed_departuretime
  @ident = ident
  @origin = origin
  @originCity = originCity
  @originName = originName
end