—# ABSTRACT: Flight class
package
OpenSky::API::Core::Flight;
our
$VERSION
=
'0.002'
;
use
Moose;
sub
_get_params (
$class
) {
return
qw(
icao24
firstSeen
estDepartureAirport
lastSeen
estArrivalAirport
callsign
estDepartureAirportHorizDistance
estDepartureAirportVertDistance
estArrivalAirportHorizDistance
estArrivalAirportVertDistance
departureAirportCandidatesCount
arrivalAirportCandidatesCount
)
;
}
has
[ __PACKAGE__->_get_params() ] => (
is
=>
'ro'
,
required
=> 1 );
__PACKAGE__->meta->make_immutable;
__END__
=pod
=encoding UTF-8
=head1 NAME
OpenSky::API::Core::Flight - Flight class
=head1 VERSION
version 0.002
=head1 DESCRIPTION
This class is not to be instantiated directly. It is a read-only class representing
L<OpenSky flight responses|https://openskynetwork.github.io/opensky-api/rest.html#flights-in-time-interval>.
All attributes are read-only.
=head1 AUTHOR
Curtis "Ovid" Poe <curtis.poe@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2023 by Curtis "Ovid" Poe.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut