]> git.immae.eu Git - github/fretlink/edi-parser.git/blame - specification/src/Text/Edifact/D01B/Composites/C235.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C235.hs
CommitLineData
a9d77a20
FM
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.Composites.C235
7 ( -- * Definition
8 compositeC235
9 -- * Dependencies
10 , simple8158
11 , simple8186
12 ) where
13
14import Text.Edifact.D01B.Simples (simple8158, simple8186)
15
16import Text.Edifact.Parsing
17import Text.Edifact.Types (Value)
18
19-- | Derived from this specification:
20--
21-- > C235 HAZARD IDENTIFICATION PLACARD DETAILS
22-- >
23-- > Desc: These numbers appear on the hazard identification
24-- > placard required on the means of transport.
25-- >
26-- > 010 8158 Orange hazard placard upper part
27-- > identifier C an..4
28-- > 020 8186 Orange hazard placard lower part
29-- > identifier C an4
30--
31-- Dependencies: 'simple8158', 'simple8186'.
32compositeC235 :: Parser Value
33compositeC235 =
34 composite "C235"
35 [ "010" .@ optional simple8158
36 , "020" .@ optional simple8186
37 ]