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.
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 |
# File 'lib/FlightXML2REST.rb', line 871 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.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def actualdeparturetime @actualdeparturetime end |
#aircrafttype ⇒ Object
Returns the value of attribute aircrafttype.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def aircrafttype @aircrafttype end |
#destination ⇒ Object
Returns the value of attribute destination.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def destination @destination end |
#destinationCity ⇒ Object
Returns the value of attribute destinationCity.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def destinationCity @destinationCity end |
#destinationName ⇒ Object
Returns the value of attribute destinationName.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def destinationName @destinationName end |
#estimatedarrivaltime ⇒ Object
Returns the value of attribute estimatedarrivaltime.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def estimatedarrivaltime @estimatedarrivaltime end |
#filed_departuretime ⇒ Object
Returns the value of attribute filed_departuretime.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def filed_departuretime @filed_departuretime end |
#ident ⇒ Object
Returns the value of attribute ident.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def ident @ident end |
#origin ⇒ Object
Returns the value of attribute origin.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def origin @origin end |
#originCity ⇒ Object
Returns the value of attribute originCity.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def originCity @originCity end |
#originName ⇒ Object
Returns the value of attribute originName.
859 860 861 |
# File 'lib/FlightXML2REST.rb', line 859 def originName @originName end |