]>
Commit | Line | Data |
---|---|---|
a9d77a20 FM |
1 | {-# LANGUAGE OverloadedStrings #-} |
2 | ||
3 | ---- Machine generated code. | |
4 | ---- Output of edi-parser-scaffolder | |
5 | ||
6 | module Text.Edifact.D96A.Composites.C223 | |
7 | ( -- * Definition | |
8 | compositeC223 | |
9 | -- * Dependencies | |
10 | , simple6411 | |
11 | , simple7106 | |
12 | ) where | |
13 | ||
14 | import Text.Edifact.D96A.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 according to ISO 1523/73 can | |
24 | -- > be ignited. | |
25 | -- > | |
26 | -- > 010 7106 Shipment flashpoint C n3 | |
27 | -- > 020 6411 Measure unit qualifier 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 | ] |