File Coverage

blib/lib/Finance/Bank/Postbank_de/APIv1/Transaction.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Finance::Bank::Postbank_de::APIv1::Transaction;
2 10     10   73 use Moo;
  10         20  
  10         61  
3 10     10   3104 use Filter::signatures;
  10         31  
  10         77  
4 10     10   333 no warnings 'experimental::signatures';
  10         20  
  10         408  
5 10     10   59 use feature 'signatures';
  10         41  
  10         1432  
6             extends 'HAL::Resource';
7              
8             our $VERSION = '0.57';
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, Ecorion@cpan.orgE
32              
33             =head1 SEE ALSO
34              
35             L, L.
36              
37             =head1 REPOSITORY
38              
39             The public repository of this module is
40             L.
41              
42             =head1 SUPPORT
43              
44             The public support forum of this module is
45             L.
46              
47             =head1 BUG TRACKER
48              
49             Please report bugs in this module via the RT CPAN bug queue at
50             L
51             or via mail to L.
52              
53             =head1 COPYRIGHT (c)
54              
55             Copyright 2003-2019 by Max Maischein C.
56              
57             =head1 LICENSE
58              
59             This module is released under the same terms as Perl itself.
60              
61             =cut