]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D01B/Composites/C234.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C234.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D01B.Composites.C234
7 ( -- * Definition
8 compositeC234
9 -- * Dependencies
10 , simple7088
11 , simple7124
12 ) where
13
14 import Text.Edifact.D01B.Simples (simple7088, simple7124)
15
16 import Text.Edifact.Parsing
17 import Text.Edifact.Types (Value)
18
19 -- | Derived from this specification:
20 --
21 -- > C234 UNDG INFORMATION
22 -- >
23 -- > Desc: Information on dangerous goods, taken from the
24 -- > United Nations Dangerous Goods classification.
25 -- >
26 -- > 010 7124 United Nations Dangerous Goods (UNDG)
27 -- > identifier C n4
28 -- > 020 7088 Dangerous goods flashpoint value C an..8
29 --
30 -- Dependencies: 'simple7088', 'simple7124'.
31 compositeC234 :: Parser Value
32 compositeC234 =
33 composite "C234"
34 [ "010" .@ optional simple7124
35 , "020" .@ optional simple7088
36 ]