NAME

WWW::ArsenalFC::TicketInformation - Get Arsenal FC ticket information for forthcoming matches

VERSION

version 1.122590

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.

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.