Class: RoutesBetweenAirportsStruct

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(count = nil, filedAltitude = nil, route = nil) ⇒ RoutesBetweenAirportsStruct

Returns a new instance of RoutesBetweenAirportsStruct.



2086
2087
2088
2089
2090
# File 'lib/FlightXML2REST.rb', line 2086

def initialize(count = nil, filedAltitude = nil, route = nil)
  @count = count
  @filedAltitude = filedAltitude
  @route = route
end

Instance Attribute Details

#countObject

Returns the value of attribute count.



2085
2086
2087
# File 'lib/FlightXML2REST.rb', line 2085

def count
  @count
end

#filedAltitudeObject

Returns the value of attribute filedAltitude.



2085
2086
2087
# File 'lib/FlightXML2REST.rb', line 2085

def filedAltitude
  @filedAltitude
end

#routeObject

Returns the value of attribute route.



2085
2086
2087
# File 'lib/FlightXML2REST.rb', line 2085

def route
  @route
end