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 9     9   69 use Moo;
  9         20  
  9         58  
3 9     9   2800 use Filter::signatures;
  9         41  
  9         54  
4 9     9   276 no warnings 'experimental::signatures';
  9         25  
  9         358  
5 9     9   70 use feature 'signatures';
  9         20  
  9         1622  
6             extends 'HAL::Resource';
7              
8             our $VERSION = '0.55';
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