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.



1904
1905
1906
1907
1908
# File 'lib/FlightXML2REST.rb', line 1904

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.



1903
1904
1905
# File 'lib/FlightXML2REST.rb', line 1903

def count
  @count
end

#filedAltitudeObject

Returns the value of attribute filedAltitude.



1903
1904
1905
# File 'lib/FlightXML2REST.rb', line 1903

def filedAltitude
  @filedAltitude
end

#routeObject

Returns the value of attribute route.



1903
1904
1905
# File 'lib/FlightXML2REST.rb', line 1903

def route
  @route
end