]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D96A/Composites/C531.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D96A / Composites / C531.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D96A.Composites.C531
7 ( -- * Definition
8 compositeC531
9 -- * Dependencies
10 , simple7073
11 , simple7075
12 , simple7233
13 ) where
14
15 import Text.Edifact.D96A.Simples (simple7073, simple7075, simple7233)
16
17 import Text.Edifact.Parsing
18 import Text.Edifact.Types (Value)
19
20 -- | Derived from this specification:
21 --
22 -- > C531 PACKAGING DETAILS
23 -- >
24 -- > Desc: Packaging level and details, terms and conditions.
25 -- >
26 -- > 010 7075 Packaging level, coded C an..3
27 -- > 020 7233 Packaging related information, coded C an..3
28 -- > 030 7073 Packaging terms and conditions, coded C an..3
29 --
30 -- Dependencies: 'simple7073', 'simple7075', 'simple7233'.
31 compositeC531 :: Parser Value
32 compositeC531 =
33 composite "C531"
34 [ "010" .@ optional simple7075
35 , "020" .@ optional simple7233
36 , "030" .@ optional simple7073
37 ]