aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Composites/C401.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D01B/Composites/C401.hs')
-rw-r--r--specification/src/Text/Edifact/D01B/Composites/C401.hs40
1 files changed, 40 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D01B/Composites/C401.hs b/specification/src/Text/Edifact/D01B/Composites/C401.hs
new file mode 100644
index 0000000..83b794a
--- /dev/null
+++ b/specification/src/Text/Edifact/D01B/Composites/C401.hs
@@ -0,0 +1,40 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.Composites.C401
7 ( -- * Definition
8 compositeC401
9 -- * Dependencies
10 , simple7130
11 , simple8457
12 , simple8459
13 ) where
14
15import Text.Edifact.D01B.Simples (simple7130, simple8457, simple8459)
16
17import Text.Edifact.Parsing
18import 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'.
34compositeC401 :: Parser Value
35compositeC401 =
36 composite "C401"
37 [ "010" .@ mandatory simple8457
38 , "020" .@ mandatory simple8459
39 , "030" .@ optional simple7130
40 ]