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.
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 |
# File 'lib/FlightXML2REST.rb', line 699 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.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def actualarrivaltime @actualarrivaltime end |
#actualdeparturetime ⇒ Object
Returns the value of attribute actualdeparturetime.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def actualdeparturetime @actualdeparturetime end |
#aircrafttype ⇒ Object
Returns the value of attribute aircrafttype.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def aircrafttype @aircrafttype end |
#destination ⇒ Object
Returns the value of attribute destination.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def destination @destination end |
#destinationCity ⇒ Object
Returns the value of attribute destinationCity.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def destinationCity @destinationCity end |
#destinationName ⇒ Object
Returns the value of attribute destinationName.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def destinationName @destinationName end |
#estimatedarrivaltime ⇒ Object
Returns the value of attribute estimatedarrivaltime.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def estimatedarrivaltime @estimatedarrivaltime end |
#ident ⇒ Object
Returns the value of attribute ident.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def ident @ident end |
#origin ⇒ Object
Returns the value of attribute origin.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def origin @origin end |
#originCity ⇒ Object
Returns the value of attribute originCity.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def originCity @originCity end |
#originName ⇒ Object
Returns the value of attribute originName.
687 688 689 |
# File 'lib/FlightXML2REST.rb', line 687 def originName @originName end |