1package Business::EDI::CodeList::DutyOrTaxOrFeeFunctionCodeQualifier;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {5283;}
6my $usage       = 'B';
7
8# 5283  Duty or tax or fee function code qualifier              [B]
9# Desc: Code qualifying the function of a duty or tax or fee.
10# Repr: an..3
11
12my %code_hash = (
13'1' => [ 'Individual duty, tax or fee (Customs item)',
14    'Individual duty, tax or fee charged on a single Customs item line of the goods declaration (CCC).' ],
15'2' => [ 'Total of all duties, taxes and fees (Customs item)',
16    'Total of all duties, taxes and fees charged on a single Customs item line of the goods declaration (CCC).' ],
17'3' => [ 'Total of each duty, tax or fee type (Customs declaration)',
18    'Total of each duty, tax or fee charged on the goods declaration (CCC).' ],
19'4' => [ 'Total of all duties, taxes and fee types (Customs',
20    'declaration) Total of all duties, taxes and fees charged on the goods declaration (CCC).' ],
21'5' => [ 'Customs duty',
22    'Duties laid down in the Customs tariff to which goods are liable on entering or leaving the Customs territory (CCC).' ],
23'6' => [ 'Fee',
24    'Charge for services rendered.' ],
25'7' => [ 'Tax',
26    'Contribution levied by an authority.' ],
27'9' => [ 'Tax related information',
28    'Code specifying information related to tax.' ],
29);
30sub get_codes { return \%code_hash; }
31
321;
33