Types
types
¤
Modules:
Name | Description |
---|---|
cache |
|
grpc |
|
json |
|
static |
|
Attributes:
Name | Type | Description |
---|---|---|
M |
Method |
|
IntTimestampS |
TypeAlias
|
Unix timestamp in integer seconds. |
IntTimestampMs |
TypeAlias
|
Unix timestamp in integer milliseconds. |
IntoTimestamp |
TypeAlias
|
A type that can be converted to a timestamp (in seconds). |
IntFlightId |
TypeAlias
|
Flight ID as an integer. |
StrFlightIdHex |
TypeAlias
|
Flight ID as a hexadecimal string. |
IntoFlightId |
TypeAlias
|
A type that can be converted to a flight ID. |
IntTimestampMs
module-attribute
¤
IntTimestampMs: TypeAlias = int
Unix timestamp in integer milliseconds.
IntoTimestamp
module-attribute
¤
IntoTimestamp: TypeAlias = Union[IntTimestampS, datetime]
A type that can be converted to a timestamp (in seconds).
StrFlightIdHex
module-attribute
¤
StrFlightIdHex: TypeAlias = str
Flight ID as a hexadecimal string.
IntoFlightId
module-attribute
¤
IntoFlightId: TypeAlias = Union[
IntFlightId, StrFlightIdHex, bytes
]
A type that can be converted to a flight ID.
cache
¤
Classes:
Name | Description |
---|---|
DType |
A newtype for annotating types in TypedDicts. |
FlightListRecord |
|
PlaybackTrackEMSRecord |
|
PlaybackTrackRecord |
|
RecentPositionRecord |
|
FlightRecord |
|
NearbyFlightRecord |
|
LiveFlightStatusRecord |
|
TopFlightRecord |
|
EMSRecord |
|
TrailPointRecord |
|
FlightDetailsRecord |
|
PlaybackFlightRecord |
|
Functions:
Name | Description |
---|---|
to_schema |
Generate a polars schema from a TypedDict. |
Attributes:
playback_track_ems_schema
module-attribute
¤
playback_track_ems_schema = to_schema(
PlaybackTrackEMSRecord
)
position_buffer_struct_schema
module-attribute
¤
position_buffer_struct_schema = to_schema(
RecentPositionRecord
)
live_flights_status_schema
module-attribute
¤
live_flights_status_schema = to_schema(
LiveFlightStatusRecord
)
DType
dataclass
¤
DType(type_: DataType)
A newtype for annotating types in TypedDicts.
Methods:
Name | Description |
---|---|
__post_init__ |
|
Attributes:
Name | Type | Description |
---|---|---|
type_ |
DataType
|
|
FlightListRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
flight_id |
Annotated[Union[IntFlightId, None], DType(UInt64())]
|
|
number |
Annotated[Union[str, None], DType(String())]
|
|
callsign |
Annotated[Union[str, None], DType(String())]
|
|
icao24 |
Annotated[Union[int, None], DType(UInt32())]
|
|
registration |
Annotated[Union[str, None], DType(String())]
|
|
typecode |
Annotated[str, DType(String())]
|
|
origin |
Annotated[Union[str, None], DType(String())]
|
|
destination |
Annotated[Union[str, None], DType(String())]
|
|
status |
Annotated[Union[str, None], DType(String())]
|
|
STOD |
Annotated[Union[IntTimestampMs, None], DType(Datetime('ms', time_zone='UTC'))]
|
|
ETOD |
Annotated[Union[IntTimestampMs, None], DType(Datetime('ms', time_zone='UTC'))]
|
|
ATOD |
Annotated[Union[IntTimestampMs, None], DType(Datetime('ms', time_zone='UTC'))]
|
|
STOA |
Annotated[Union[IntTimestampMs, None], DType(Datetime('ms', time_zone='UTC'))]
|
|
ETOA |
Annotated[Union[IntTimestampMs, None], DType(Datetime('ms', time_zone='UTC'))]
|
|
ATOA |
Annotated[Union[IntTimestampMs, None], DType(Datetime('ms', time_zone='UTC'))]
|
|
STOD
instance-attribute
¤
STOD: Annotated[
Union[IntTimestampMs, None],
DType(Datetime("ms", time_zone="UTC")),
]
ETOD
instance-attribute
¤
ETOD: Annotated[
Union[IntTimestampMs, None],
DType(Datetime("ms", time_zone="UTC")),
]
ATOD
instance-attribute
¤
ATOD: Annotated[
Union[IntTimestampMs, None],
DType(Datetime("ms", time_zone="UTC")),
]
STOA
instance-attribute
¤
STOA: Annotated[
Union[IntTimestampMs, None],
DType(Datetime("ms", time_zone="UTC")),
]
ETOA
instance-attribute
¤
ETOA: Annotated[
Union[IntTimestampMs, None],
DType(Datetime("ms", time_zone="UTC")),
]
ATOA
instance-attribute
¤
ATOA: Annotated[
Union[IntTimestampMs, None],
DType(Datetime("ms", time_zone="UTC")),
]
PlaybackTrackEMSRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
Annotated[IntTimestampS, DType(UInt32())]
|
|
ias |
Annotated[Union[int, None], DType(Int16())]
|
|
tas |
Annotated[Union[int, None], DType(Int16())]
|
|
mach |
Annotated[Union[int, None], DType(Int16())]
|
|
mcp |
Annotated[Union[int, None], DType(Int32())]
|
|
fms |
Annotated[Union[int, None], DType(Int32())]
|
|
autopilot |
Annotated[Union[int, None], DType(Int8())]
|
|
oat |
Annotated[Union[int, None], DType(Int8())]
|
|
track |
Annotated[Union[float, None], DType(Float32())]
|
|
roll |
Annotated[Union[float, None], DType(Float32())]
|
|
qnh |
Annotated[Union[int, None], DType(UInt16())]
|
|
wind_dir |
Annotated[Union[int, None], DType(Int16())]
|
|
wind_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
precision |
Annotated[Union[int, None], DType(UInt8())]
|
|
altitude_gps |
Annotated[Union[int, None], DType(Int32())]
|
|
emergency |
Annotated[Union[int, None], DType(UInt8())]
|
|
tcas_acas |
Annotated[Union[int, None], DType(UInt8())]
|
|
heading |
Annotated[Union[int, None], DType(UInt16())]
|
|
PlaybackTrackRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
Annotated[IntTimestampS, DType(UInt32())]
|
|
latitude |
Annotated[float, DType(Float32())]
|
|
longitude |
Annotated[float, DType(Float32())]
|
|
altitude |
Annotated[int, DType(Int32())]
|
|
ground_speed |
Annotated[int, DType(Int16())]
|
|
vertical_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
track |
Annotated[int, DType(Int16())]
|
|
squawk |
Annotated[int, DType(UInt16())]
|
|
ems |
Annotated[Union[None, PlaybackTrackEMSRecord], DType(Struct(playback_track_ems_schema))]
|
|
ems
instance-attribute
¤
ems: Annotated[
Union[None, PlaybackTrackEMSRecord],
DType(Struct(playback_track_ems_schema)),
]
RecentPositionRecord
¤
FlightRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
Annotated[IntTimestampMs, DType(Datetime('ms', time_zone='UTC'))]
|
|
flightid |
Annotated[IntFlightId, DType(UInt32())]
|
|
latitude |
Annotated[float, DType(Float32())]
|
|
longitude |
Annotated[float, DType(Float32())]
|
|
track |
Annotated[int, DType(UInt16())]
|
|
altitude |
Annotated[int, DType(Int32())]
|
|
ground_speed |
Annotated[int, DType(Int16())]
|
|
on_ground |
Annotated[bool, DType(Boolean())]
|
|
callsign |
Annotated[str, DType(String())]
|
|
source |
Annotated[int, DType(UInt8())]
|
|
registration |
Annotated[str, DType(String())]
|
|
origin |
Annotated[str, DType(String())]
|
|
destination |
Annotated[str, DType(String())]
|
|
typecode |
Annotated[str, DType(String())]
|
|
eta |
Annotated[int, DType(UInt32())]
|
|
squawk |
Annotated[int, DType(UInt16())]
|
|
vertical_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
position_buffer |
Annotated[list[RecentPositionRecord], DType(List(Struct(position_buffer_struct_schema)))]
|
|
timestamp
instance-attribute
¤
timestamp: Annotated[
IntTimestampMs, DType(Datetime("ms", time_zone="UTC"))
]
position_buffer
instance-attribute
¤
position_buffer: Annotated[
list[RecentPositionRecord],
DType(List(Struct(position_buffer_struct_schema))),
]
NearbyFlightRecord
¤
Bases: FlightRecord
Attributes:
Name | Type | Description |
---|---|---|
distance |
Annotated[int, DType(UInt32())]
|
|
timestamp |
Annotated[IntTimestampMs, DType(Datetime('ms', time_zone='UTC'))]
|
|
flightid |
Annotated[IntFlightId, DType(UInt32())]
|
|
latitude |
Annotated[float, DType(Float32())]
|
|
longitude |
Annotated[float, DType(Float32())]
|
|
track |
Annotated[int, DType(UInt16())]
|
|
altitude |
Annotated[int, DType(Int32())]
|
|
ground_speed |
Annotated[int, DType(Int16())]
|
|
on_ground |
Annotated[bool, DType(Boolean())]
|
|
callsign |
Annotated[str, DType(String())]
|
|
source |
Annotated[int, DType(UInt8())]
|
|
registration |
Annotated[str, DType(String())]
|
|
origin |
Annotated[str, DType(String())]
|
|
destination |
Annotated[str, DType(String())]
|
|
typecode |
Annotated[str, DType(String())]
|
|
eta |
Annotated[int, DType(UInt32())]
|
|
squawk |
Annotated[int, DType(UInt16())]
|
|
vertical_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
position_buffer |
Annotated[list[RecentPositionRecord], DType(List(Struct(position_buffer_struct_schema)))]
|
|
timestamp
instance-attribute
¤
timestamp: Annotated[
IntTimestampMs, DType(Datetime("ms", time_zone="UTC"))
]
position_buffer
instance-attribute
¤
position_buffer: Annotated[
list[RecentPositionRecord],
DType(List(Struct(position_buffer_struct_schema))),
]
LiveFlightStatusRecord
¤
TopFlightRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
flight_id |
Annotated[IntFlightId, DType(UInt32())]
|
|
live_clicks |
Annotated[int, DType(UInt32())]
|
|
total_clicks |
Annotated[int, DType(UInt32())]
|
|
flight_number |
Annotated[str, DType(String())]
|
|
callsign |
Annotated[str, DType(String())]
|
|
squawk |
Annotated[int, DType(UInt16())]
|
|
from_iata |
Annotated[str, DType(String())]
|
|
from_city |
Annotated[str, DType(String())]
|
|
to_iata |
Annotated[str, DType(String())]
|
|
to_city |
Annotated[str, DType(String())]
|
|
type |
Annotated[str, DType(String())]
|
|
full_description |
Annotated[str, DType(String())]
|
|
EMSRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
ias |
Annotated[Union[int, None], DType(Int16())]
|
|
tas |
Annotated[Union[int, None], DType(Int16())]
|
|
mach |
Annotated[Union[int, None], DType(Int16())]
|
|
mcp |
Annotated[Union[int, None], DType(Int32())]
|
|
fms |
Annotated[Union[int, None], DType(Int32())]
|
|
oat |
Annotated[Union[int, None], DType(Int8())]
|
|
qnh |
Annotated[Union[int, None], DType(UInt16())]
|
|
wind_dir |
Annotated[Union[int, None], DType(Int16())]
|
|
wind_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
altitude_gps |
Annotated[Union[int, None], DType(Int32())]
|
|
agpsdiff |
Annotated[Union[int, None], DType(Int32())]
|
|
apflags |
Annotated[Union[int, None], DType(Int32())]
|
|
rs |
Annotated[Union[int, None], DType(Int32())]
|
|
TrailPointRecord
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
Annotated[IntTimestampS, DType(UInt32())]
|
|
latitude |
Annotated[float, DType(Float32())]
|
|
longitude |
Annotated[float, DType(Float32())]
|
|
altitude |
Annotated[Union[int, None], DType(Int32())]
|
|
ground_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
track |
Annotated[Union[int, None], DType(UInt16())]
|
|
vertical_speed |
Annotated[Union[int, None], DType(Int16())]
|
|
FlightDetailsRecord
¤
Bases: _AircraftRecord
, _ScheduleRecord
, _FlightProgressRecord
, _FlightInfoRecord
, _FlightTrailRecord
Attributes:
flight_trail_list
instance-attribute
¤
flight_trail_list: Annotated[
Union[None, list[TrailPointRecord]],
DType(List(Struct(trail_point_schema))),
]
timestamp_ms
instance-attribute
¤
timestamp_ms: Annotated[
IntTimestampMs, DType(Datetime("ms", time_zone="UTC"))
]
scheduled_departure
instance-attribute
¤
scheduled_departure: Annotated[
IntTimestampS, DType(UInt32())
]
actual_departure
instance-attribute
¤
actual_departure: Annotated[
Union[IntTimestampS, None], DType(UInt32())
]
actual_arrival
instance-attribute
¤
actual_arrival: Annotated[
Union[IntTimestampS, None], DType(UInt32())
]
PlaybackFlightRecord
¤
Bases: _AircraftRecord
, _ScheduleRecord
, _FlightInfoRecord
, _FlightTrailRecord
Attributes:
flight_trail_list
instance-attribute
¤
flight_trail_list: Annotated[
Union[None, list[TrailPointRecord]],
DType(List(Struct(trail_point_schema))),
]
timestamp_ms
instance-attribute
¤
timestamp_ms: Annotated[
IntTimestampMs, DType(Datetime("ms", time_zone="UTC"))
]
scheduled_departure
instance-attribute
¤
scheduled_departure: Annotated[
IntTimestampS, DType(UInt32())
]
actual_departure
instance-attribute
¤
actual_departure: Annotated[
Union[IntTimestampS, None], DType(UInt32())
]
actual_arrival
instance-attribute
¤
actual_arrival: Annotated[
Union[IntTimestampS, None], DType(UInt32())
]
grpc
¤
Attributes:
Name | Type | Description |
---|---|---|
LiveFeedFieldAuthenticated |
|
|
LiveFeedField |
|
LiveFeedFieldAuthenticated
module-attribute
¤
LiveFeedFieldAuthenticated = Literal[
"squawk", "vspeed", "airspace", "logo_id", "age"
]
LiveFeedField
module-attribute
¤
LiveFeedField = Literal[
"flight",
"reg",
"route",
"type",
LiveFeedFieldAuthenticated,
]
json
¤
Classes:
Functions:
Name | Description |
---|---|
is_airport |
|
is_operator |
|
is_live |
|
is_schedule |
|
is_aircraft |
|
Attributes:
Name | Type | Description |
---|---|---|
FLIGHT_LIST_EMPTY |
FlightList
|
An object with no flight list data, for use as a default value. |
Plugin |
|
|
AirportRequest |
|
|
Iata |
|
|
Icao |
|
|
Entry |
|
FLIGHT_LIST_EMPTY
module-attribute
¤
FLIGHT_LIST_EMPTY: FlightList = {
"result": {
"request": {
"fetchBy": "flight",
"format": "json",
"limit": 0,
"page": 0,
"query": "",
"timestamp": 0,
},
"response": {
"item": {
"current": 0,
"total": None,
"limit": 0,
},
"page": {
"current": 0,
"more": False,
"total": None,
},
"timestamp": 0,
"data": None,
"aircraftInfo": {
"model": {"code": "", "text": ""},
"registration": None,
"country": None,
"hex": None,
"restricted": False,
"serialNo": None,
"age": {"availability": False},
"availability": {
"serialNo": False,
"age": False,
},
},
"aircraftImages": [],
},
},
"_api": {"copyright": "", "legalNotice": ""},
}
An object with no flight list data, for use as a default value.
Plugin
module-attribute
¤
Plugin = Literal[
"details",
"runways",
"schedule",
"satelliteImage",
"scheduledRoutesStatistics",
"weather",
]
AirportRequest
module-attribute
¤
AirportRequest = TypedDict(
"AirportRequest",
{
"callback": None,
"code": str,
"device": Union[str, None],
"fleet": Union[str, None],
"format": Literal["json"],
"limit": int,
"page": int,
"pk": None,
"plugin": list[Plugin],
"plugin[]": list[Plugin],
"plugin-setting": PluginSetting,
"plugin-setting[schedule][mode]": str,
"plugin-setting[schedule][timestamp]": IntTimestampS,
"token": Union[str, None],
},
total=False,
)
Entry
module-attribute
¤
Entry = Union[
AirportEntry,
OperatorEntry,
LiveEntry,
ScheduleEntry,
AircraftEntry,
]
User
¤
Features
¤
Bases: TypedDict
UserData
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
accessToken |
None | str
|
|
accountType |
str
|
|
countryCode |
None | str
|
|
dateExpires |
IntTimestampS
|
|
dateLastLogin |
str
|
|
features |
Features
|
|
hasConsented |
bool
|
|
hasPassword |
bool
|
|
idUser |
int
|
|
identity |
str
|
|
isActive |
bool
|
|
isAnonymousAccount |
bool
|
|
isLoggedIn |
bool
|
|
localeCode |
str
|
|
name |
None
|
|
oAuth |
None
|
|
oAuthType |
None
|
|
publicKey |
None
|
|
subscriptionKey |
None | str
|
|
tokenLogin |
str
|
|
typeSource |
str
|
|
Authentication
¤
UsernamePassword
¤
TokenSubscriptionKey
¤
APIResult
¤
FlightNumber
¤
AircraftModel
¤
AircraftAge
¤
AircraftAvailability
¤
StatusData
¤
OwnerData
¤
AirlineData
¤
CommonAirport
¤
AirportPairData
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
origin |
None | CommonAirport
|
|
destination |
None | CommonAirport
|
|
real |
None | CommonAirport
|
Destination airport for diverted |
ImageCollection
¤
FlightListRequest
¤
Item
¤
Page
¤
Identification
¤
FlightListCountry
¤
AircraftInfo
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
model |
AircraftModel
|
|
registration |
None | str
|
|
owner |
NotRequired[OwnerData]
|
|
airline |
NotRequired[AirlineData]
|
|
country |
None | FlightListCountry
|
|
hex |
None | str
|
|
restricted |
bool
|
|
serialNo |
None | str
|
|
age |
AircraftAge
|
|
availability |
AircraftAvailability
|
|
Interval
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
departure |
None | IntTimestampS
|
|
arrival |
None | IntTimestampS
|
|
TimeOther
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
eta |
None | IntTimestampS
|
|
updated |
None | IntTimestampS
|
|
duration |
None | int
|
|
FlightListTime
¤
FlightListItem
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
identification |
Identification
|
|
status |
StatusData
|
|
aircraft |
AircraftInfo
|
|
owner |
OwnerData
|
|
airline |
AirlineData
|
|
airport |
AirportPairData
|
|
time |
FlightListTime
|
|
AircraftImage
¤
FlightListResponse
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
item |
Item
|
|
page |
Page
|
|
timestamp |
IntTimestampS
|
|
data |
list[FlightListItem] | None
|
|
aircraftInfo |
AircraftInfo
|
|
aircraftImages |
list[AircraftImage]
|
|
FlightListResult
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
request |
FlightListRequest
|
|
response |
FlightListResponse
|
|
FlightList
¤
PlaybackRequest
¤
FlightIdentification
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
id |
StrFlightIdHex | int
|
|
number |
FlightNumber
|
|
callsign |
str
|
|
AircraftIdentification
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
modes |
str
|
|
registration |
str
|
|
serialNo |
None | str
|
|
age |
NotRequired[AircraftAge]
|
|
availability |
NotRequired[AircraftAvailability]
|
|
AircraftData
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
model |
AircraftModel
|
|
identification |
AircraftIdentification
|
|
availability |
AircraftAvailability
|
|
Median
¤
Altitude
¤
Speed
¤
VerticalSpeed
¤
EMS
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
ts |
IntTimestampS
|
|
ias |
int | None
|
|
tas |
int | None
|
|
mach |
int | None
|
|
mcp |
int | None
|
|
fms |
int | None
|
|
autopilot |
None
|
|
oat |
int | None
|
|
trueTrack |
float | None
|
|
rollAngle |
float | None
|
|
qnh |
None
|
|
windDir |
int | None
|
|
windSpd |
int | None
|
|
precision |
int | None
|
|
altGPS |
int | None
|
|
emergencyStatus |
int | None
|
|
tcasAcasDtatus |
int | None
|
|
heading |
int | None
|
|
TrackData
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
latitude |
float
|
|
longitude |
float
|
|
altitude |
Altitude
|
|
speed |
Speed
|
|
verticalSpeed |
VerticalSpeed
|
|
heading |
int
|
Warning |
squawk |
str
|
|
timestamp |
IntTimestampS
|
|
ems |
None | EMS
|
|
heading
instance-attribute
¤
heading: int
Warning
The JSON response claims that heading
is available, but ADS-B only
transmits the ground track.
Heading
is only available in EMS data.
This field is renamed to track
to avoid confusion in
fr24.json.playback_track_dict.
FlightDataAvailability
¤
FlightData
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
identification |
FlightIdentification
|
|
status |
StatusData
|
|
aircraft |
AircraftData | None
|
|
owner |
OwnerData | None
|
|
airline |
AirlineData | None
|
|
airport |
AirportPairData
|
|
median |
Median
|
|
track |
list[TrackData]
|
|
aircraftImages |
ImageCollection
|
|
availability |
FlightDataAvailability
|
|
PlaybackData
¤
PlaybackResponse
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
IntTimestampS
|
|
altitudeFiltered |
bool
|
|
data |
PlaybackData
|
|
PlaybackResult
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
request |
PlaybackRequest
|
|
response |
PlaybackResponse
|
|
Playback
¤
AirportListScheduleSetting
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
mode |
Literal['departures', 'arrivals'] | None
|
|
timestamp |
IntTimestampS
|
|
PluginSetting
¤
AirportSchedule
¤
Bases: TypedDict
Attributes:
Name | Type | Description |
---|---|---|
arrivals |
FlightListResponse
|
|
departures |
FlightListResponse
|
|
AirportPluginData
¤
AirportListData
¤
AirportResponse
¤
AirportResult
¤
AirportList
¤
Live
¤
FindAirportDetail
¤
Operator
¤
FindScheduleDetail
¤
Aircraft
¤
EntryBase
¤
AirportEntry
¤
OperatorEntry
¤
LiveEntry
¤
ScheduleEntry
¤
AircraftEntry
¤
StatsEntry
¤
Stats
¤
Find
¤
static
¤
Classes:
Name | Description |
---|---|
Model |
|
AircraftFamilyRow |
|
AircraftFamily |
|
Airline |
|
Airlines |
|
Timezone |
|
Airport |
|
Airports |
|
CountryName |
|
CountryCode |
|
Country |
|
Metadata |
|
Countries |
|
Attributes:
Name | Type | Description |
---|---|---|
StaticData |
|