]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D01B/Composites/C270.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D01B / Composites / C270.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D01B.Composites.C270
7 ( -- * Definition
8 compositeC270
9 -- * Dependencies
10 , simple6066
11 , simple6069
12 , simple6411
13 ) where
14
15 import Text.Edifact.D01B.Simples (simple6066, simple6069, simple6411)
16
17 import Text.Edifact.Parsing
18 import Text.Edifact.Types (Value)
19
20 -- | Derived from this specification:
21 --
22 -- > C270 CONTROL
23 -- >
24 -- > Desc: Control total for checking integrity of a message or
25 -- > part of a message.
26 -- >
27 -- > 010 6069 Control total type code qualifier M an..3
28 -- > 020 6066 Control total value M n..18
29 -- > 030 6411 Measurement unit code C an..3
30 --
31 -- Dependencies: 'simple6066', 'simple6069', 'simple6411'.
32 compositeC270 :: Parser Value
33 compositeC270 =
34 composite "C270"
35 [ "010" .@ mandatory simple6069
36 , "020" .@ mandatory simple6066
37 , "030" .@ optional simple6411
38 ]