From a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Menou?= Date: Thu, 8 Dec 2016 10:19:15 +0200 Subject: Release code as open source --- .../src/Text/Edifact/D96A/Composites/C223.hs | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 specification/src/Text/Edifact/D96A/Composites/C223.hs (limited to 'specification/src/Text/Edifact/D96A/Composites/C223.hs') diff --git a/specification/src/Text/Edifact/D96A/Composites/C223.hs b/specification/src/Text/Edifact/D96A/Composites/C223.hs new file mode 100644 index 0000000..9f39949 --- /dev/null +++ b/specification/src/Text/Edifact/D96A/Composites/C223.hs @@ -0,0 +1,35 @@ +{-# LANGUAGE OverloadedStrings #-} + +---- Machine generated code. +---- Output of edi-parser-scaffolder + +module Text.Edifact.D96A.Composites.C223 + ( -- * Definition + compositeC223 + -- * Dependencies + , simple6411 + , simple7106 + ) where + +import Text.Edifact.D96A.Simples (simple6411, simple7106) + +import Text.Edifact.Parsing +import Text.Edifact.Types (Value) + +-- | Derived from this specification: +-- +-- > C223 DANGEROUS GOODS SHIPMENT FLASHPOINT +-- > +-- > Desc: Temperature at which a vapor according to ISO 1523/73 can +-- > be ignited. +-- > +-- > 010 7106 Shipment flashpoint C n3 +-- > 020 6411 Measure unit qualifier C an..3 +-- +-- Dependencies: 'simple6411', 'simple7106'. +compositeC223 :: Parser Value +compositeC223 = + composite "C223" + [ "010" .@ optional simple7106 + , "020" .@ optional simple6411 + ] -- cgit v1.2.3