1package Business::EDI::CodeList::IndexTypeIdentifier;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {5027;}
6my $usage       = 'B';
7
8# 5027  Index type identifier                                   [B]
9# Desc: To identify a type of index.
10# Repr: an..17
11
12my %code_hash = (
13'1' => [ 'Definition',
14    'To define the index.' ],
15'2' => [ 'Contents',
16    'To record the contents of the index.' ],
17);
18sub get_codes { return \%code_hash; }
19
201;
21