]> git.immae.eu Git - github/fretlink/edi-parser.git/blame - specification/src/Text/Edifact/D96A/Composites/C829.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D96A / Composites / C829.hs
CommitLineData
a9d77a20
FM
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D96A.Composites.C829
7 ( -- * Definition
8 compositeC829
9 -- * Dependencies
10 , simple1082
11 , simple5495
12 ) where
13
14import Text.Edifact.D96A.Simples (simple1082, simple5495)
15
16import Text.Edifact.Parsing
17import Text.Edifact.Types (Value)
18
19-- | Derived from this specification:
20--
21-- > C829 SUB-LINE INFORMATION
22-- >
23-- > Desc: To provide an indication that a segment or segment group
24-- > is used to contain sub-line or sub-line item information
25-- > and to optionally enable the sub-line to be identified.
26-- >
27-- > 010 5495 Sub-line indicator, coded C an..3
28-- > 020 1082 Line item number C n..6
29--
30-- Dependencies: 'simple1082', 'simple5495'.
31compositeC829 :: Parser Value
32compositeC829 =
33 composite "C829"
34 [ "010" .@ optional simple5495
35 , "020" .@ optional simple1082
36 ]