Class: EnrouteFlightStruct
- Inherits:
-
Object
- Object
- EnrouteFlightStruct
- Defined in:
- lib/FlightXML2REST.rb
Instance Attribute Summary collapse
-
#actualdeparturetime ⇒ Object
Returns the value of attribute actualdeparturetime.
-
#aircrafttype ⇒ Object
Returns the value of attribute aircrafttype.
-
#destination ⇒ Object
Returns the value of attribute destination.
-
#destinationCity ⇒ Object
Returns the value of attribute destinationCity.
-
#destinationName ⇒ Object
Returns the value of attribute destinationName.
-
#estimatedarrivaltime ⇒ Object
Returns the value of attribute estimatedarrivaltime.
-
#filed_departuretime ⇒ Object
Returns the value of attribute filed_departuretime.
-
#ident ⇒ Object
Returns the value of attribute ident.
-
#origin ⇒ Object
Returns the value of attribute origin.
-
#originCity ⇒ Object
Returns the value of attribute originCity.
-
#originName ⇒ Object
Returns the value of attribute originName.
Instance Method Summary collapse
-
#initialize(actualdeparturetime = nil, aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, filed_departuretime = nil, ident = nil, origin = nil, originCity = nil, originName = nil) ⇒ EnrouteFlightStruct
constructor
A new instance of EnrouteFlightStruct.
Constructor Details
#initialize(actualdeparturetime = nil, aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, filed_departuretime = nil, ident = nil, origin = nil, originCity = nil, originName = nil) ⇒ EnrouteFlightStruct
Returns a new instance of EnrouteFlightStruct.
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 |
# File 'lib/FlightXML2REST.rb', line 783 def initialize(actualdeparturetime = nil, aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, filed_departuretime = nil, ident = nil, origin = nil, originCity = nil, originName = nil ) @actualdeparturetime = actualdeparturetime @aircrafttype = aircrafttype @destination = destination @destinationCity = destinationCity @destinationName = destinationName @estimatedarrivaltime = estimatedarrivaltime @filed_departuretime = filed_departuretime @ident = ident @origin = origin @originCity = originCity @originName = originName end |
Instance Attribute Details
#actualdeparturetime ⇒ Object
Returns the value of attribute actualdeparturetime.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def actualdeparturetime @actualdeparturetime end |
#aircrafttype ⇒ Object
Returns the value of attribute aircrafttype.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def aircrafttype @aircrafttype end |
#destination ⇒ Object
Returns the value of attribute destination.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def destination @destination end |
#destinationCity ⇒ Object
Returns the value of attribute destinationCity.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def destinationCity @destinationCity end |
#destinationName ⇒ Object
Returns the value of attribute destinationName.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def destinationName @destinationName end |
#estimatedarrivaltime ⇒ Object
Returns the value of attribute estimatedarrivaltime.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def estimatedarrivaltime @estimatedarrivaltime end |
#filed_departuretime ⇒ Object
Returns the value of attribute filed_departuretime.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def filed_departuretime @filed_departuretime end |
#ident ⇒ Object
Returns the value of attribute ident.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def ident @ident end |
#origin ⇒ Object
Returns the value of attribute origin.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def origin @origin end |
#originCity ⇒ Object
Returns the value of attribute originCity.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def originCity @originCity end |
#originName ⇒ Object
Returns the value of attribute originName.
771 772 773 |
# File 'lib/FlightXML2REST.rb', line 771 def originName @originName end |