Class: TrackExStruct
- Inherits:
-
Object
- Object
- TrackExStruct
- Defined in:
- lib/FlightXML2REST.rb
Instance Attribute Summary collapse
-
#altitude ⇒ Object
Returns the value of attribute altitude.
-
#altitudeChange ⇒ Object
Returns the value of attribute altitudeChange.
-
#altitudeStatus ⇒ Object
Returns the value of attribute altitudeStatus.
-
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
-
#groundspeed ⇒ Object
Returns the value of attribute groundspeed.
-
#latitude ⇒ Object
Returns the value of attribute latitude.
-
#longitude ⇒ Object
Returns the value of attribute longitude.
-
#timestamp ⇒ Object
Returns the value of attribute timestamp.
-
#updateType ⇒ Object
Returns the value of attribute updateType.
Instance Method Summary collapse
-
#initialize(altitude = nil, altitudeChange = nil, altitudeStatus = nil, faFlightID = nil, groundspeed = nil, latitude = nil, longitude = nil, timestamp = nil, updateType = nil) ⇒ TrackExStruct
constructor
A new instance of TrackExStruct.
Constructor Details
#initialize(altitude = nil, altitudeChange = nil, altitudeStatus = nil, faFlightID = nil, groundspeed = nil, latitude = nil, longitude = nil, timestamp = nil, updateType = nil) ⇒ TrackExStruct
Returns a new instance of TrackExStruct.
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 |
# File 'lib/FlightXML2REST.rb', line 2412 def initialize(altitude = nil, altitudeChange = nil, altitudeStatus = nil, faFlightID = nil, groundspeed = nil, latitude = nil, longitude = nil, = nil, updateType = nil ) @altitude = altitude @altitudeChange = altitudeChange @altitudeStatus = altitudeStatus @faFlightID = faFlightID @groundspeed = groundspeed @latitude = latitude @longitude = longitude = @updateType = updateType end |
Instance Attribute Details
#altitude ⇒ Object
Returns the value of attribute altitude.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def altitude @altitude end |
#altitudeChange ⇒ Object
Returns the value of attribute altitudeChange.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def altitudeChange @altitudeChange end |
#altitudeStatus ⇒ Object
Returns the value of attribute altitudeStatus.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def altitudeStatus @altitudeStatus end |
#faFlightID ⇒ Object
Returns the value of attribute faFlightID.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def faFlightID @faFlightID end |
#groundspeed ⇒ Object
Returns the value of attribute groundspeed.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def groundspeed @groundspeed end |
#latitude ⇒ Object
Returns the value of attribute latitude.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def latitude @latitude end |
#longitude ⇒ Object
Returns the value of attribute longitude.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def longitude @longitude end |
#timestamp ⇒ Object
Returns the value of attribute timestamp.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def end |
#updateType ⇒ Object
Returns the value of attribute updateType.
2402 2403 2404 |
# File 'lib/FlightXML2REST.rb', line 2402 def updateType @updateType end |