aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Simples/S7075.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D96A/Simples/S7075.hs')
-rw-r--r--specification/src/Text/Edifact/D96A/Simples/S7075.hs34
1 files changed, 34 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S7075.hs b/specification/src/Text/Edifact/D96A/Simples/S7075.hs
new file mode 100644
index 0000000..7a725b2
--- /dev/null
+++ b/specification/src/Text/Edifact/D96A/Simples/S7075.hs
@@ -0,0 +1,34 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D96A.Simples.S7075
7 ( simple7075
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > 7075 Packaging level, coded
16-- >
17-- > Desc: Indication of level of packaging specified.
18-- >
19-- > Repr: an..3
20-- >
21-- > 1 Inner
22-- > Level of packing, if it exists, that is immediately
23-- > subordinate to the intermediate packaging level.
24-- > 2 Intermediate
25-- > Level of packaging, if it exists, that is immediately
26-- > subordinate to the outer packaging level.
27-- > 3 Outer
28-- > For packed merchandise, outermost level of packaging for
29-- > a shipment.
30-- > 4 No packaging hierarchy
31-- > There is no specifiable level of packaging: packaging is
32-- > inner and outer level as well.
33simple7075 :: Parser Value
34simple7075 = simple "7075" (alphaNumeric `upTo` 3)