aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Composites/C210.hs
blob: e2fd38e4136c1270115d85f1e5c51a7cc46e765c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{-# LANGUAGE OverloadedStrings #-}

---- Machine generated code.
---- Output of edi-parser-scaffolder

module Text.Edifact.D01B.Composites.C210
  ( -- * Definition
    compositeC210
    -- * Dependencies
  , simple7102
  ) where

import           Text.Edifact.D01B.Simples (simple7102)

import           Text.Edifact.Parsing
import           Text.Edifact.Types        (Value)

-- | Derived from this specification:
--
-- >        C210 MARKS & LABELS
-- >
-- >        Desc: Shipping marks on packages in free text; one to ten
-- >              lines.
-- >
-- > 010    7102  Shipping marks description                M      an..35
-- > 020    7102  Shipping marks description                C      an..35
-- > 030    7102  Shipping marks description                C      an..35
-- > 040    7102  Shipping marks description                C      an..35
-- > 050    7102  Shipping marks description                C      an..35
-- > 060    7102  Shipping marks description                C      an..35
-- > 070    7102  Shipping marks description                C      an..35
-- > 080    7102  Shipping marks description                C      an..35
-- > 090    7102  Shipping marks description                C      an..35
-- > 100    7102  Shipping marks description                C      an..35
--
-- Dependencies: 'simple7102'.
compositeC210 :: Parser Value
compositeC210 =
  composite "C210"
    [ "010" .@ mandatory simple7102
    , "020" .@ optional  simple7102
    , "030" .@ optional  simple7102
    , "040" .@ optional  simple7102
    , "050" .@ optional  simple7102
    , "060" .@ optional  simple7102
    , "070" .@ optional  simple7102
    , "080" .@ optional  simple7102
    , "090" .@ optional  simple7102
    , "100" .@ optional  simple7102
    ]