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