| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Finance::Bank::Postbank_de::APIv1::Transaction; |
|
2
|
9
|
|
|
9
|
|
68
|
use Moo; |
|
|
9
|
|
|
|
|
18
|
|
|
|
9
|
|
|
|
|
56
|
|
|
3
|
9
|
|
|
9
|
|
2733
|
use Filter::signatures; |
|
|
9
|
|
|
|
|
21
|
|
|
|
9
|
|
|
|
|
56
|
|
|
4
|
9
|
|
|
9
|
|
267
|
no warnings 'experimental::signatures'; |
|
|
9
|
|
|
|
|
21
|
|
|
|
9
|
|
|
|
|
330
|
|
|
5
|
9
|
|
|
9
|
|
56
|
use feature 'signatures'; |
|
|
9
|
|
|
|
|
37
|
|
|
|
9
|
|
|
|
|
1322
|
|
|
6
|
|
|
|
|
|
|
extends 'HAL::Resource'; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '0.55'; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Finance::Bank::Postbank_de::APIv1::Transaction - Postbank Transaction |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
has [ 'accountHolder', 'name', 'iban', 'currency', 'amount', |
|
19
|
|
|
|
|
|
|
'productType', |
|
20
|
|
|
|
|
|
|
'bookingDate', 'balance', 'usedTan', 'messages', 'transactionId', |
|
21
|
|
|
|
|
|
|
'transactionType', 'purpose', 'transactionDetail', |
|
22
|
|
|
|
|
|
|
'referenceInitials', 'reference', 'valutaDate' |
|
23
|
|
|
|
|
|
|
] => ( |
|
24
|
|
|
|
|
|
|
is => 'ro', |
|
25
|
|
|
|
|
|
|
); |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 AUTHOR |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Max Maischein, E<lt>corion@cpan.orgE<gt> |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
L<perl>, L<WWW::Mechanize>. |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 REPOSITORY |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The public repository of this module is |
|
40
|
|
|
|
|
|
|
L<https://github.com/Corion/Finance-Bank-Postbank_de>. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 SUPPORT |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The public support forum of this module is |
|
45
|
|
|
|
|
|
|
L<https://perlmonks.org/>. |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 BUG TRACKER |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Please report bugs in this module via the RT CPAN bug queue at |
|
50
|
|
|
|
|
|
|
L<https://rt.cpan.org/Public/Dist/Display.html?Name=Finance-Bank-Postbank_de> |
|
51
|
|
|
|
|
|
|
or via mail to L<finance-bank-postbank_de-Bugs@rt.cpan.org>. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 COPYRIGHT (c) |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Copyright 2003-2018 by Max Maischein C<corion@cpan.org>. |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 LICENSE |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This module is released under the same terms as Perl itself. |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |