Why not adopt me?
NAME
Finance::Bank::Cahoot::Statement::Entry - Cahoot statement transaction object
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 $snapshot = $cahoot->snapshot;
foreach my $transaction (@$snapshot) {
print $transaction->date, q{,},
$transaction->details, q{,},
$transaction->credit || 0, q{,},
$transaction->debit || 0, qq{\n};
}
METHODS
- new
-
Create a new instance of a a Cahoot statement. It is unlikely that the
new
method should need to be called by anything other thanFinance::Bank::Cahoot
. - date
-
Returns the date of the transaction as a text string in the form
DD/MM/YYYY
. - time
-
Returns the time of the transaction as returned by the
time
function. - balance
-
Returns the balance of the account following the transaction (where available).
- debit
-
Returns the amount of the transaction if it is a debit.
- credit
-
Returns the amount of the transaction if it is a credit.
- details
-
Returns the text description of the transaction.
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 2007 by Jon Connell
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.