| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Business::NAB::Australian::DirectEntry::Returns::DescriptiveRecord; |
|
2
|
|
|
|
|
|
|
$Business::NAB::Australian::DirectEntry::Returns::DescriptiveRecord::VERSION = '0.03'; |
|
3
|
|
|
|
|
|
|
=head1 NAME |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Business::NAB::Australian::DirectEntry::Return::DescriptiveRecord; |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Class for descriptive record in the "Australian Direct Entry Payments" |
|
10
|
|
|
|
|
|
|
returns file. Inherits all logic/attributes from |
|
11
|
|
|
|
|
|
|
L<Business::NAB::Australian::DirectEntry::Payments::DescriptiveRecord>. |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=cut |
|
14
|
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
955
|
use strict; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
44
|
|
|
16
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
89
|
|
|
17
|
1
|
|
|
1
|
|
8
|
use feature qw/ signatures /; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
140
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
5
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
9
|
|
|
20
|
|
|
|
|
|
|
extends 'Business::NAB::Australian::DirectEntry::Payments::DescriptiveRecord'; |
|
21
|
1
|
|
|
1
|
|
9229
|
no warnings qw/ experimental::signatures /; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
89
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |