Class: InFlightStruct

Inherits:
Object
  • Object
show all
Defined in:
lib/FlightXML2REST.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(aircraft = [], next_offset = nil) ⇒ InFlightStruct

Returns a new instance of InFlightStruct.



2297
2298
2299
2300
# File 'lib/FlightXML2REST.rb', line 2297

def initialize(aircraft = [], next_offset = nil)
  @aircraft = aircraft
  @next_offset = next_offset
end

Instance Attribute Details

#aircraftObject

Returns the value of attribute aircraft.



2296
2297
2298
# File 'lib/FlightXML2REST.rb', line 2296

def aircraft
  @aircraft
end

#next_offsetObject

Returns the value of attribute next_offset.



2296
2297
2298
# File 'lib/FlightXML2REST.rb', line 2296

def next_offset
  @next_offset
end