| Finance-Wesabe documentation | Contained in the Finance-Wesabe distribution. |
Finance::Wesabe::Profile - Class to represent your wesabe.com profile
my $profile = Finance::Wesabe::Profile->new(
content => $c, parent => $p
);
This modules provides access to your profile information.
Brian Cassidy <bricas@cpan.org>
Copyright 2009-2010 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Finance-Wesabe documentation | Contained in the Finance-Wesabe distribution. |
package Finance::Wesabe::Profile; use Moose; use Finance::Wesabe::Utils;
has content => ( is => 'ro', isa => 'HashRef' ); has parent => ( is => 'ro', isa => 'Object' );
__PACKAGE__->mk_simple_field( qw( username name postal-code email ) ); __PACKAGE__->mk_deep_field( qw( country ) ); __PACKAGE__->mk_simple_date_field( qw( joined ) ); no Moose; __PACKAGE__->meta->make_immutable;
1;