Class: AirlineFlightInfoStruct
- Inherits:
-
Object
- Object
- AirlineFlightInfoStruct
- Defined in:
- lib/FlightXML2REST.rb
Instance Attribute Summary collapse
-
#bag_claim ⇒ Object
Returns the value of attribute bag_claim.
-
#codeshares ⇒ Object
Returns the value of attribute codeshares.
-
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
-
#gate_dest ⇒ Object
Returns the value of attribute gate_dest.
-
#gate_orig ⇒ Object
Returns the value of attribute gate_orig.
-
#ident ⇒ Object
Returns the value of attribute ident.
-
#meal_service ⇒ Object
Returns the value of attribute meal_service.
-
#seats_cabin_business ⇒ Object
Returns the value of attribute seats_cabin_business.
-
#seats_cabin_coach ⇒ Object
Returns the value of attribute seats_cabin_coach.
-
#seats_cabin_first ⇒ Object
Returns the value of attribute seats_cabin_first.
-
#tailnumber ⇒ Object
Returns the value of attribute tailnumber.
-
#terminal_dest ⇒ Object
Returns the value of attribute terminal_dest.
-
#terminal_orig ⇒ Object
Returns the value of attribute terminal_orig.
Instance Method Summary collapse
-
#initialize(bag_claim = nil, codeshares = [], faFlightID = nil, gate_dest = nil, gate_origin = nil, ident = nil, meal_service = nil, seats_cabin_business = nil, seats_cabin_coach = nil, seats_cabin_first = nil, tailnumber = nil, terminal_dest = nil, terminal_orig = nil) ⇒ AirlineFlightInfoStruct
constructor
A new instance of AirlineFlightInfoStruct.
Constructor Details
#initialize(bag_claim = nil, codeshares = [], faFlightID = nil, gate_dest = nil, gate_origin = nil, ident = nil, meal_service = nil, seats_cabin_business = nil, seats_cabin_coach = nil, seats_cabin_first = nil, tailnumber = nil, terminal_dest = nil, terminal_orig = nil) ⇒ AirlineFlightInfoStruct
Returns a new instance of AirlineFlightInfoStruct.
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/FlightXML2REST.rb', line 77 def initialize (bag_claim = nil, codeshares = [], faFlightID = nil, gate_dest = nil, gate_origin = nil, ident = nil, meal_service = nil, seats_cabin_business = nil, seats_cabin_coach = nil, seats_cabin_first = nil, tailnumber = nil, terminal_dest = nil, terminal_orig = nil) @bag_claim = bag_claim @codeshares = codeshares @faFlightID = faFlightID @gate_dest = gate_dest @gate_origin = gate_origin @ident = ident @meal_service = meal_service @seats_cabin_business = seats_cabin_business @seats_cabin_coach = seats_cabin_coach @seats_cabin_first = seats_cabin_first @tailnumber = tailnumber @terminal_dest = terminal_dest @terminal_orig = terminal_orig end |
Instance Attribute Details
#bag_claim ⇒ Object
Returns the value of attribute bag_claim.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def bag_claim @bag_claim end |
#codeshares ⇒ Object
Returns the value of attribute codeshares.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def codeshares @codeshares end |
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def faFlightID @faFlightID end |
#gate_dest ⇒ Object
Returns the value of attribute gate_dest.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def gate_dest @gate_dest end |
#gate_orig ⇒ Object
Returns the value of attribute gate_orig.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def gate_orig @gate_orig end |
#ident ⇒ Object
Returns the value of attribute ident.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def ident @ident end |
#meal_service ⇒ Object
Returns the value of attribute meal_service.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def meal_service @meal_service end |
#seats_cabin_business ⇒ Object
Returns the value of attribute seats_cabin_business.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def seats_cabin_business @seats_cabin_business end |
#seats_cabin_coach ⇒ Object
Returns the value of attribute seats_cabin_coach.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def seats_cabin_coach @seats_cabin_coach end |
#seats_cabin_first ⇒ Object
Returns the value of attribute seats_cabin_first.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def seats_cabin_first @seats_cabin_first end |
#tailnumber ⇒ Object
Returns the value of attribute tailnumber.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def tailnumber @tailnumber end |
#terminal_dest ⇒ Object
Returns the value of attribute terminal_dest.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def terminal_dest @terminal_dest end |
#terminal_orig ⇒ Object
Returns the value of attribute terminal_orig.
63 64 65 |
# File 'lib/FlightXML2REST.rb', line 63 def terminal_orig @terminal_orig end |