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::Wachovia::Account

SYNOPSIS

Used by Finance::Bank::Wachovia to represent bank accounts. After instantiating a Finance::Bank::Wachovia object, you can get the Account object for any account by using the account( $account_num_goes_here ) method. See perldocs for Finance::Bank::Wachovia for more on that.

  my $account = $wachovia->account( $account_num );
  
  # $account is Finance::Bank::Wachovia::Account object
  print "Name: ", $account->name, "\n";
  print "Balance: ", $account->balance, "\n";
  

METHODS

name

returns name of account (eg: "exp access") in lower case.

number

returns account number

type

returns type of account (eg: "checking" ) in lower case.

available_balance

returns available balance

balance

alias for available_balance

posted_balance

returns posted balance

get_transactions

returns array ref of Transaction objects. See Finance::Bank::Wachovia::Transaction for more.

transactions

alias for get_transactions

SEE ALSO

Finance::Bank::Wachovia Finance::Bank::Wachovia::Transactions

1 POD Error

The following errors were encountered while parsing the POD:

Around line 135:

=begin without a target?