# ABSTRACT: Flight class
our $VERSION = '0.002';
use Moose;
use experimental qw(signatures);
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
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