The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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:

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.