line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Finance::Bank::Postbank_de::APIv1::BusinessPartner; |
2
|
10
|
|
|
10
|
|
77
|
use Moo; |
|
10
|
|
|
|
|
29
|
|
|
10
|
|
|
|
|
61
|
|
3
|
10
|
|
|
10
|
|
2972
|
use Filter::signatures; |
|
10
|
|
|
|
|
30
|
|
|
10
|
|
|
|
|
61
|
|
4
|
10
|
|
|
10
|
|
304
|
no warnings 'experimental::signatures'; |
|
10
|
|
|
|
|
23
|
|
|
10
|
|
|
|
|
411
|
|
5
|
10
|
|
|
10
|
|
70
|
use feature 'signatures'; |
|
10
|
|
|
|
|
27
|
|
|
10
|
|
|
|
|
853
|
|
6
|
|
|
|
|
|
|
extends 'HAL::Resource'; |
7
|
|
|
|
|
|
|
|
8
|
10
|
|
|
10
|
|
4844
|
use Finance::Bank::Postbank_de::APIv1::Account; |
|
10
|
|
|
|
|
47
|
|
|
10
|
|
|
|
|
1207
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '0.57'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Finance::Bank::Postbank_de::APIv1::BusinessPartner - Postbank Businesspartner (Person) |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SYNOPSIS |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=cut |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
has [ 'accountHolder', 'name', 'iban', 'currency', 'amount', |
21
|
|
|
|
|
|
|
'ownerType', |
22
|
|
|
|
|
|
|
'sapAmId', |
23
|
|
|
|
|
|
|
'relationshipCategory', |
24
|
|
|
|
|
|
|
'accounts', |
25
|
|
|
|
|
|
|
] => ( is => 'ro' ); |
26
|
|
|
|
|
|
|
|
27
|
2
|
|
|
2
|
0
|
38
|
sub get_accounts( $self ) { |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
5
|
|
28
|
2
|
|
|
|
|
23
|
$self->inflate_list( |
29
|
|
|
|
|
|
|
'Finance::Bank::Postbank_de::APIv1::Account', |
30
|
|
|
|
|
|
|
$self->accounts |
31
|
|
|
|
|
|
|
); |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 AUTHOR |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Max Maischein, Ecorion@cpan.orgE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 SEE ALSO |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
L, L. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 REPOSITORY |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The public repository of this module is |
47
|
|
|
|
|
|
|
L. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 SUPPORT |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The public support forum of this module is |
52
|
|
|
|
|
|
|
L. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 BUG TRACKER |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Please report bugs in this module via the RT CPAN bug queue at |
57
|
|
|
|
|
|
|
L |
58
|
|
|
|
|
|
|
or via mail to L. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 COPYRIGHT (c) |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Copyright 2003-2019 by Max Maischein C. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head1 LICENSE |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
This module is released under the same terms as Perl itself. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |