NAME
WWW::ArsenalFC::TicketInformation - Get Arsenal FC ticket information for forthcoming matches
VERSION
version 1.123160
SYNOPSIS
my $ticket_information = WWW::ArsenalFC::TicketInformation->new();
$ticket_information->fetch();
for my $match (@{$ticket_info->matches}){
# WWW::ArsenalFC::TicketInformation::Match objects
}
for my $category (@{$ticket_info->categories}){
# WWW::ArsenalFC::TicketInformation::Category objects
}
DESCRIPTION
This is a module to get and parse the Arsenal ticket information for forthcoming matches (from http://www.arsenal.com/membership/buy-tickets).
Hint: Try aliased to save some typing when using this module.
ATTRIBUTES
matches
An array reference of WWW::ArsenalFC::TicketInformation::Match objects.
categories
An array reference of WWW::ArsenalFC::TicketInformation::Category objects.
METHODS
fetch()
Fetches and parses the Arsenal ticket information. Populates matches and categories.
EXAMPLES
An example of using this module to send out emails when tickets become available is available at https://gist.github.com/3728775.
SEE ALSO
AUTHOR
Andrew Jones <andrew@arjones.co.uk>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Andrew Jones.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.