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.



2090
2091
2092
2093
2094
# File 'lib/FlightXML2REST.rb', line 2090

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.



2089
2090
2091
# File 'lib/FlightXML2REST.rb', line 2089

def count
  @count
end

#filedAltitudeObject

Returns the value of attribute filedAltitude.



2089
2090
2091
# File 'lib/FlightXML2REST.rb', line 2089

def filedAltitude
  @filedAltitude
end

#routeObject

Returns the value of attribute route.



2089
2090
2091
# File 'lib/FlightXML2REST.rb', line 2089

def route
  @route
end