]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D01B/Composites/C076.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C076.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D01B.Composites.C076
7 ( -- * Definition
8 compositeC076
9 -- * Dependencies
10 , simple3148
11 , simple3155
12 ) where
13
14 import Text.Edifact.D01B.Simples (simple3148, simple3155)
15
16 import Text.Edifact.Parsing
17 import Text.Edifact.Types (Value)
18
19 -- | Derived from this specification:
20 --
21 -- > C076 COMMUNICATION CONTACT
22 -- >
23 -- > Desc: Communication number of a department or employee in
24 -- > a specified channel.
25 -- >
26 -- > 010 3148 Communication address identifier M an..512
27 -- > 020 3155 Communication address code qualifier M an..3
28 --
29 -- Dependencies: 'simple3148', 'simple3155'.
30 compositeC076 :: Parser Value
31 compositeC076 =
32 composite "C076"
33 [ "010" .@ mandatory simple3148
34 , "020" .@ mandatory simple3155
35 ]