File Coverage

blib/lib/Finance/Bank/Postbank_de/APIv1/Position.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::Position;
2 10     10   60 use Moo;
  10         19  
  10         49  
3 10     10   2385 use Filter::signatures;
  10         20  
  10         48  
4 10     10   238 no warnings 'experimental::signatures';
  10         21  
  10         281  
5 10     10   61 use feature 'signatures';
  10         17  
  10         1335  
6             extends 'HAL::Resource';
7              
8             our $VERSION = '0.56';
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