line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Finance::Bank::Postbank_de::APIv1::Position; |
2
|
10
|
|
|
10
|
|
69
|
use Moo; |
|
10
|
|
|
|
|
28
|
|
|
10
|
|
|
|
|
61
|
|
3
|
10
|
|
|
10
|
|
3553
|
use Filter::signatures; |
|
10
|
|
|
|
|
49
|
|
|
10
|
|
|
|
|
62
|
|
4
|
10
|
|
|
10
|
|
383
|
no warnings 'experimental::signatures'; |
|
10
|
|
|
|
|
26
|
|
|
10
|
|
|
|
|
369
|
|
5
|
10
|
|
|
10
|
|
120
|
use feature 'signatures'; |
|
10
|
|
|
|
|
27
|
|
|
10
|
|
|
|
|
1611
|
|
6
|
|
|
|
|
|
|
extends 'HAL::Resource'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '0.57'; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Finance::Bank::Postbank_de::APIv1::Position - Postbank position |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 SYNOPSIS |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
has [ 'depotCurrWinOrLoss', |
19
|
|
|
|
|
|
|
'winOrLoss', |
20
|
|
|
|
|
|
|
'isin', |
21
|
|
|
|
|
|
|
'branchOfTrade', |
22
|
|
|
|
|
|
|
'amountType', |
23
|
|
|
|
|
|
|
'averageQuoteCurrency', |
24
|
|
|
|
|
|
|
'depotCurrency', |
25
|
|
|
|
|
|
|
'country', |
26
|
|
|
|
|
|
|
'assetGroup', |
27
|
|
|
|
|
|
|
'winOrLossCurrency', |
28
|
|
|
|
|
|
|
'productType', |
29
|
|
|
|
|
|
|
'wkn', |
30
|
|
|
|
|
|
|
'exchangerate', |
31
|
|
|
|
|
|
|
'depotCurrQuote', |
32
|
|
|
|
|
|
|
'depotCurrValue', |
33
|
|
|
|
|
|
|
'quoteCurrency', |
34
|
|
|
|
|
|
|
'quoteDate', |
35
|
|
|
|
|
|
|
'currency', |
36
|
|
|
|
|
|
|
'messages', |
37
|
|
|
|
|
|
|
'positionId', |
38
|
|
|
|
|
|
|
'averageQuote', |
39
|
|
|
|
|
|
|
'value', |
40
|
|
|
|
|
|
|
'shortDescription', |
41
|
|
|
|
|
|
|
'fullDescription', |
42
|
|
|
|
|
|
|
'lastBookInDate', |
43
|
|
|
|
|
|
|
'amount', |
44
|
|
|
|
|
|
|
'assetGroupDescription', |
45
|
|
|
|
|
|
|
'availableAmount', |
46
|
|
|
|
|
|
|
'depotCurrAverageQuote', |
47
|
|
|
|
|
|
|
] => ( is => 'ro' ); |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |
50
|
|
|
|
|
|
|
|