Class: ScheduledFlightStruct
- Inherits:
-
Object
- Object
- ScheduledFlightStruct
- Defined in:
- lib/FlightXML2REST.rb
Instance Attribute Summary collapse
-
#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(aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, filed_departuretime = nil, ident = nil, origin = nil, originCity = nil, originName = nil) ⇒ ScheduledFlightStruct
constructor
A new instance of ScheduledFlightStruct.
Constructor Details
#initialize(aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, filed_departuretime = nil, ident = nil, origin = nil, originCity = nil, originName = nil) ⇒ ScheduledFlightStruct
Returns a new instance of ScheduledFlightStruct.
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 |
# File 'lib/FlightXML2REST.rb', line 996 def initialize(aircrafttype = nil, destination = nil, destinationCity = nil, destinationName = nil, estimatedarrivaltime = nil, filed_departuretime = nil, ident = nil, origin = nil, originCity = nil, originName = nil ) @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
#aircrafttype ⇒ Object
Returns the value of attribute aircrafttype.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def aircrafttype @aircrafttype end |
#destination ⇒ Object
Returns the value of attribute destination.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def destination @destination end |
#destinationCity ⇒ Object
Returns the value of attribute destinationCity.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def destinationCity @destinationCity end |
#destinationName ⇒ Object
Returns the value of attribute destinationName.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def destinationName @destinationName end |
#estimatedarrivaltime ⇒ Object
Returns the value of attribute estimatedarrivaltime.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def estimatedarrivaltime @estimatedarrivaltime end |
#filed_departuretime ⇒ Object
Returns the value of attribute filed_departuretime.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def filed_departuretime @filed_departuretime end |
#ident ⇒ Object
Returns the value of attribute ident.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def ident @ident end |
#origin ⇒ Object
Returns the value of attribute origin.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def origin @origin end |
#originCity ⇒ Object
Returns the value of attribute originCity.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def originCity @originCity end |
#originName ⇒ Object
Returns the value of attribute originName.
985 986 987 |
# File 'lib/FlightXML2REST.rb', line 985 def originName @originName end |