]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D01B/Composites/C524.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C524.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D01B.Composites.C524
7 ( -- * Definition
8 compositeC524
9 -- * Dependencies
10 , simple1131
11 , simple3055
12 , simple4078
13 , simple4079
14 ) where
15
16 import Text.Edifact.D01B.Simples (simple1131, simple3055, simple4078,
17 simple4079)
18
19 import Text.Edifact.Parsing
20 import Text.Edifact.Types (Value)
21
22 -- | Derived from this specification:
23 --
24 -- > C524 HANDLING INSTRUCTIONS
25 -- >
26 -- > Desc: Instruction for the handling of goods, products or
27 -- > articles in shipment, storage etc.
28 -- >
29 -- > 010 4079 Handling instruction description code C an..3
30 -- > 020 1131 Code list identification code C an..17
31 -- > 030 3055 Code list responsible agency code C an..3
32 -- > 040 4078 Handling instruction description C an..70
33 --
34 -- Dependencies: 'simple1131', 'simple3055', 'simple4078', 'simple4079'.
35 compositeC524 :: Parser Value
36 compositeC524 =
37 composite "C524"
38 [ "010" .@ optional simple4079
39 , "020" .@ optional simple1131
40 , "030" .@ optional simple3055
41 , "040" .@ optional simple4078
42 ]