The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=head1 NAME

Net::Songkick::Country - Models a country in the Songkick API

=cut

package Net::Songkick::Country;

use strict;
use warnings;

use Moose;

has displayName => (
    is => 'ro',
    isa => 'Str',
);

=head1 METHODS

=head2 Net::Songkick::Event->new_from_xml

Creates a new Net::Songkick::Country object from an XML::Element object that
has been created from an <ocuntry> ... </country> element in the XML returned
from a Songkick API request.

=cut

sub new_from_xml {
    my $class = shift;
    my ($xml) = @_;

    my $self = {};

    $self->{displayName} = $xml->findvalue('@displayName');

    return $class->new($self);
}

=head1 AUTHOR

Dave Cross <dave@mag-sol.com>

=head1 SEE ALSO

perl(1), L<http://www.songkick.com/>, L<http://developer.songkick.com/>

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2010, Magnum Solutions Ltd.  All Rights Reserved.

This script is free software; you can redistribute it and/or modify it
under the same terms as Perl itself. 

=cut

1;