aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S9417.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D01B/Simples/S9417.hs')
-rw-r--r--specification/src/Text/Edifact/D01B/Simples/S9417.hs37
1 files changed, 37 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D01B/Simples/S9417.hs b/specification/src/Text/Edifact/D01B/Simples/S9417.hs
new file mode 100644
index 0000000..0d5d781
--- /dev/null
+++ b/specification/src/Text/Edifact/D01B/Simples/S9417.hs
@@ -0,0 +1,37 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.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 code [B]
16-- >
17-- > Desc: Code specifying a type of government action such as
18-- > inspection, detention, fumigation, security.
19-- >
20-- > Repr: an..3
21-- >
22-- > 1 Clearance
23-- > The cargo will be or has been cleared.
24-- >
25-- > 2 Detention
26-- > The cargo has been or will be detained.
27-- >
28-- > 3 Fumigation
29-- > The cargo has been or will be fumigated.
30-- >
31-- > 4 Inspection
32-- > The cargo has been or will be inspected.
33-- >
34-- > 5 Security
35-- > The cargo has been or will be secured.
36simple9417 :: Parser Value
37simple9417 = simple "9417" (alphaNumeric `upTo` 3)