flight-stats
Version:
FlightStats API Client
18 lines (17 loc) • 315 B
JavaScript
/**
* The current status of the flight
* @name FlightStatus
* @memberOf FlightStats
* @type {Object<String,String>}
*/
module.exports = {
A: 'Active',
C: 'Canceled',
D: 'Diverted',
DN: 'Data Not Available',
L: 'Landed',
NO: 'Not Operational',
R: 'Redirected',
S: 'Scheduled',
U: 'Unknown',
}