]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D01B/Composites/C223.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C223.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D01B.Composites.C223
7 ( -- * Definition
8 compositeC223
9 -- * Dependencies
10 , simple6411
11 , simple7106
12 ) where
13
14 import Text.Edifact.D01B.Simples (simple6411, simple7106)
15
16 import Text.Edifact.Parsing
17 import Text.Edifact.Types (Value)
18
19 -- | Derived from this specification:
20 --
21 -- > C223 DANGEROUS GOODS SHIPMENT FLASHPOINT
22 -- >
23 -- > Desc: Temperature at which a vapor can be ignited as per
24 -- > ISO 1523/73.
25 -- >
26 -- > 010 7106 Shipment flashpoint value C n3
27 -- > 020 6411 Measurement unit code C an..3
28 --
29 -- Dependencies: 'simple6411', 'simple7106'.
30 compositeC223 :: Parser Value
31 compositeC223 =
32 composite "C223"
33 [ "010" .@ optional simple7106
34 , "020" .@ optional simple6411
35 ]