aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Simples/S9417.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D96A/Simples/S9417.hs')
-rw-r--r--specification/src/Text/Edifact/D96A/Simples/S9417.hs33
1 files changed, 33 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S9417.hs b/specification/src/Text/Edifact/D96A/Simples/S9417.hs
new file mode 100644
index 0000000..3f95c7e
--- /dev/null
+++ b/specification/src/Text/Edifact/D96A/Simples/S9417.hs
@@ -0,0 +1,33 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D96A.Simples.S9417
7 ( simple9417
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > 9417 Government action, coded
16-- >
17-- > Desc: To indicate type of government action such as inspection,
18-- > detention, fumigation, security.
19-- >
20-- > Repr: an..3
21-- >
22-- > 1 Clearance
23-- > The cargo will be or has been cleared.
24-- > 2 Detention
25-- > The cargo has been or will be detained.
26-- > 3 Fumigation
27-- > The cargo has been or will be fumigated.
28-- > 4 Inspection
29-- > The cargo has been or will be inspected.
30-- > 5 Security
31-- > The cargo has been or will be secured.
32simple9417 :: Parser Value
33simple9417 = simple "9417" (alphaNumeric `upTo` 3)