NAME
Finance::Bank::mBank - Check mBank account balance
VERSION
Version 0.02
SYNOPSIS
use Finance::Bank::mBank;
my $mbank = Finance::Bank::mBank->new(
userid => 555123,
password => 'loremipsum'
);
# There is no need to call ->login explicitly, but it is possible
# $mbank->login
for my $account ($mbank->accounts) {
print "$account->{account_name}: $account->{balance}\n";
}
AUTHOR
Bartek Jakubski, <b.jakubski at gmail.com>
BUGS
Please report any bugs or feature requests to bug-finance-bank-mbank at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Finance-Bank-mBank. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Finance::Bank::mBank
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2008 Bartek Jakubski, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.