NAME
Finance::Bank::Bankwest::Account - representation of a Bankwest account
VERSION
This module is part of distribution Finance-Bank-Bankwest v1.2.8.
This distribution's version numbering follows the conventions defined at semver.org.
SYNOPSIS
$account->name; # 'My Zero Transaction'
$account->number; # '303-111 0012345'
$account->balance; # 4224.35
$account->credit_limit; # 100.00
$account->uncleared_funds; # 0.00
$account->available_balance; # 4207.66
DESCRIPTION
Instances of this module are returned by "accounts" in Finance::Bank::Bankwest::Session.
ATTRIBUTES
name
The "nickname" for the account as set in the Bankwest Online Banking interface.
number
The full account number of the account in one of the following formats:
BBB-BBB AAAAAAA
for accounts with a BSB number, whereB
is a BSB digit andA
is an account digit; or#### #### #### ####
for credit card accounts.
balance
The current balance of the account in dollars, not including unfinalised debits.
credit_limit
The account's credit limit in dollars.
uncleared_funds
The total of all unfinalised deposits in dollars.
available_balance
The account's available balance in dollars, including unfinalised debits and the credit limit.
SEE ALSO
AUTHOR
Alex Peters <lxp@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Alex Peters.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
The full text of the license can be found in the LICENSE file included with this distribution.