diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-12-11 00:13:48 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-12-11 00:13:48 +0100 |
commit | 1b2bd0dc355d3e5f265a112380d076b9db7c3e81 (patch) | |
tree | e3fb525a494a7686a72921ca22897ba13534cd2f /lib/Travel/Status/DE/ASEAG |
initial commit
Diffstat (limited to 'lib/Travel/Status/DE/ASEAG')
-rw-r--r-- | lib/Travel/Status/DE/ASEAG/Result.pm | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/lib/Travel/Status/DE/ASEAG/Result.pm b/lib/Travel/Status/DE/ASEAG/Result.pm new file mode 100644 index 0000000..668ba1d --- /dev/null +++ b/lib/Travel/Status/DE/ASEAG/Result.pm @@ -0,0 +1,141 @@ +package Travel::Status::DE::ASEAG::Result; + +use strict; +use warnings; +use 5.010; + +use parent 'Class::Accessor'; + +our $VERSION = '0.00'; + +Travel::Status::DE::ASEAG::Result->mk_ro_accessors( + qw(countdown countdown_sec date datetime destination line line_id time) +); + +sub new { + my ( $obj, %conf ) = @_; + + my $ref = \%conf; + + return bless( $ref, $obj ); +} + +sub TO_JSON { + my ($self) = @_; + + return { %{$self} }; +} + +1; + +__END__ + +=head1 NAME + +Travel::Status::DE::ASEAG::Result - Information about a single +departure received by Travel::Status::DE::ASEAG + +=head1 SYNOPSIS + + for my $departure ($status->results) { + printf( + "At %s: %s to %s (in %d minutes)", + $departure->time, $departure->line, $departure->destination, + $departure->countdown + ); + } + +=head1 VERSION + +version 0.00 + +=head1 DESCRIPTION + +Travel::Status::DE::ASEAG::Result describes a single departure as obtained by +Travel::Status::DE::ASEAG. It contains information about the time, +line number and destination. + +=head1 METHODS + +=head2 ACCESSORS + +=over + +=item $departure->countdown + +Time in minutes from the time Travel::Status::DE::ASEAG was instantiated until +the bus will depart. + +=item $departure->countdown_sec + +Time in seconds from the time Travel::Status::DE::ASEAG was instantiated until +the bus will depart. + +=item $departure->date + +Departure date (DD.MM.YYYY) + +=item $departure->datetime + +DateTime object holding the departure date and time. + +=item $departure->destination + +Destination name. + +=item $departure->line + +The name of the line. + +=item $departure->line_id + +The number of the line. + +=item $departure->time + +Departure time (HH:MM:SS). + +=back + +=head2 INTERNAL + +=over + +=item $departure = Travel::Status::DE::ASEAG::Result->new(I<%data>) + +Returns a new Travel::Status::DE::ASEAG::Result object. You should not need to +call this. + +=item $departure->TO_JSON + +Allows the object data to be serialized to JSON. + +=back + +=head1 DIAGNOSTICS + +None. + +=head1 DEPENDENCIES + +=over + +=item Class::Accessor(3pm) + +=back + +=head1 BUGS AND LIMITATIONS + +Unknown. + +=head1 SEE ALSO + +Travel::Status::DE::ASEAG(3pm). + +=head1 AUTHOR + +Copyright (C) 2013 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt> + +=head1 LICENSE + +This module is licensed under the same terms as Perl itself. |