line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Finance::AMEX::Transaction::EPPRC::Unknown; |
2
|
|
|
|
|
|
|
$Finance::AMEX::Transaction::EPPRC::Unknown::VERSION = '0.004'; |
3
|
8
|
|
|
8
|
|
56
|
use strict; |
|
8
|
|
|
|
|
18
|
|
|
8
|
|
|
|
|
234
|
|
4
|
8
|
|
|
8
|
|
44
|
use warnings; |
|
8
|
|
|
|
|
19
|
|
|
8
|
|
|
|
|
1045
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: Parse AMEX Transaction/Invoice Level Reconciliation (EPPRC) Unknown Rows |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub new { |
9
|
0
|
|
|
0
|
1
|
|
my ($class, %props) = @_; |
10
|
|
|
|
|
|
|
my $self = bless { |
11
|
|
|
|
|
|
|
_line => $props{line}, |
12
|
0
|
|
|
|
|
|
}, $class; |
13
|
0
|
|
|
|
|
|
return $self; |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
0
|
|
|
0
|
1
|
|
sub type {return 'UNKNOWN'} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
sub line { |
19
|
0
|
|
|
0
|
1
|
|
my ($self) = @_; |
20
|
0
|
|
|
|
|
|
return $self->{_line}; |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |