aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Composites/C402.hs
blob: 3c9e8e49c159177ee006fc801b7edc9f800f54d9 (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
{-# LANGUAGE OverloadedStrings #-}

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

module Text.Edifact.D96A.Composites.C402
  ( -- * Definition
    compositeC402
    -- * Dependencies
  , simple7064
  , simple7077
  , simple7143
  ) where

import           Text.Edifact.D96A.Simples (simple7064, simple7077, simple7143)

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

-- | Derived from this specification:
--
-- >       C402  PACKAGE TYPE IDENTIFICATION
-- >
-- >       Desc: Identification of the form in which goods are described.
-- >
-- > 010   7077   Item description type, coded                  M  an..3
-- > 020   7064   Type of packages                              M  an..35
-- > 030   7143   Item number type, coded                       C  an..3
-- > 040   7064   Type of packages                              C  an..35
-- > 050   7143   Item number type, coded                       C  an..3
--
-- Dependencies: 'simple7064', 'simple7077', 'simple7143'.
compositeC402 :: Parser Value
compositeC402 =
  composite "C402"
    [ "010" .@ mandatory simple7077
    , "020" .@ mandatory simple7064
    , "030" .@ optional  simple7143
    , "040" .@ optional  simple7064
    , "050" .@ optional  simple7143
    ]