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::Credit

SYNOPSIS

Used by Finance::Bank::Wachovia to represent credit accounts ("credit card accounts"|"credit lines"?). After instantiating a Finance::Bank::Wachovia object, you can get the Account object for any account (whether it be credit or not) by using the account( $account_num_goes_here ) method. See perldocs for Finance::Bank::Wachovia for more on that.

  my $credit = $wachovia->account( $account_num );
  
  # $credit is Finance::Bank::Wachovia::Credit object
  print "Name: ", $credit->name, "\n";
  print "Balance: ", $credit->balance, "\n"; # balance() is the same as current_balance()
  

METHODS

name

returns name of account (eg: "visa platinum") in lower case.

number

returns account number

type

returns type of credit (eg: "mbna" ) in lower case.

current_balance

returns current balance

balance

alias for current_balance

limit

returns credit limit for this account

SEE ALSO

Finance::Bank::Wachovia Finance::Bank::Wachovia::Transaction Finance::Bank::Wachovia::Account

1 POD Error

The following errors were encountered while parsing the POD:

Around line 106:

=begin without a target?