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.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/FlightXML2REST.rb', line 95 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.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def bag_claim @bag_claim end |
#codeshares ⇒ Object
Returns the value of attribute codeshares.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def codeshares @codeshares end |
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def faFlightID @faFlightID end |
#gate_dest ⇒ Object
Returns the value of attribute gate_dest.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def gate_dest @gate_dest end |
#gate_orig ⇒ Object
Returns the value of attribute gate_orig.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def gate_orig @gate_orig end |
#ident ⇒ Object
Returns the value of attribute ident.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def ident @ident end |
#meal_service ⇒ Object
Returns the value of attribute meal_service.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def meal_service @meal_service end |
#seats_cabin_business ⇒ Object
Returns the value of attribute seats_cabin_business.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def seats_cabin_business @seats_cabin_business end |
#seats_cabin_coach ⇒ Object
Returns the value of attribute seats_cabin_coach.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def seats_cabin_coach @seats_cabin_coach end |
#seats_cabin_first ⇒ Object
Returns the value of attribute seats_cabin_first.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def seats_cabin_first @seats_cabin_first end |
#tailnumber ⇒ Object
Returns the value of attribute tailnumber.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def tailnumber @tailnumber end |
#terminal_dest ⇒ Object
Returns the value of attribute terminal_dest.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def terminal_dest @terminal_dest end |
#terminal_orig ⇒ Object
Returns the value of attribute terminal_orig.
81 82 83 |
# File 'lib/FlightXML2REST.rb', line 81 def terminal_orig @terminal_orig end |