NAME

Finance::Bank::Cahoot::DirectDebit - Cahoot direct debit record

DESCRIPTION

This module describes describes the object that holds the information contained in a single statement transaction.

SYNOPSIS

  my $cahoot = Finance::Bank::Cahoot->new(credentials => 'ReadLine');
  my @accounts = $cahoot->accounts;
  $cahoot->set_account($accounts->[0]->{account});
  my $debits = $cahoot->debits;
  foreach my $debit (@$debits) {
    print $debit->payee, q{,},
          $debit->reference || 0, qq{\n};
  }

METHODS

new

Create a new instance of a a Cahoot direct debit entry. It is unlikely that the new method should need to be called by anything other than Finance::Bank::Cahoot.

payee

Returns the name of the recipients of the direct debit.

reference

Returns the direct debit reference supplied to the payee.

WARNING

This warning is from Simon Cozens' Finance::Bank::LloydsTSB, and seems just as apt here.

This is code for online banking, and that means your money, and that means BE CAREFUL. You are encouraged, nay, expected, to audit the source of this module yourself to reassure yourself that I am not doing anything untoward with your banking data. This software is useful to me, but is provided under NO GUARANTEE, explicit or implied.

NOTES

This has only been tested on my own accounts. I imagine it should work on any account types, but I can't guarantee this.

AUTHOR

Jon Connell <jon@figsandfudge.com>

LICENSE AND COPYRIGHT

Copyright 2008 by Jon Connell

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.