]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D01B/Composites/C401.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C401.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D01B.Composites.C401
7 ( -- * Definition
8 compositeC401
9 -- * Dependencies
10 , simple7130
11 , simple8457
12 , simple8459
13 ) where
14
15 import Text.Edifact.D01B.Simples (simple7130, simple8457, simple8459)
16
17 import Text.Edifact.Parsing
18 import Text.Edifact.Types (Value)
19
20 -- | Derived from this specification:
21 --
22 -- > C401 EXCESS TRANSPORTATION INFORMATION
23 -- >
24 -- > Desc: To provide details of reason for, and responsibility
25 -- > for, use of transportation other than normally
26 -- > utilized.
27 -- >
28 -- > 010 8457 Excess transportation reason code M an..3
29 -- > 020 8459 Excess transportation responsibility code M an..3
30 -- > 030 7130 Customer shipment authorisation
31 -- > identifier C an..17
32 --
33 -- Dependencies: 'simple7130', 'simple8457', 'simple8459'.
34 compositeC401 :: Parser Value
35 compositeC401 =
36 composite "C401"
37 [ "010" .@ mandatory simple8457
38 , "020" .@ mandatory simple8459
39 , "030" .@ optional simple7130
40 ]