aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Simples/S9411.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D96A/Simples/S9411.hs')
-rw-r--r--specification/src/Text/Edifact/D96A/Simples/S9411.hs37
1 files changed, 37 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S9411.hs b/specification/src/Text/Edifact/D96A/Simples/S9411.hs
new file mode 100644
index 0000000..5c640b1
--- /dev/null
+++ b/specification/src/Text/Edifact/D96A/Simples/S9411.hs
@@ -0,0 +1,37 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D96A.Simples.S9411
7 ( simple9411
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > 9411 Government involvement, coded
16-- >
17-- > Desc: Indication of requirement and status of government
18-- > involvement.
19-- >
20-- > Repr: an..3
21-- >
22-- > 1 Carried out as instructed
23-- > Instructions have been carried out.
24-- > 2 Carried out as amended
25-- > Procedures have been carried out as amended.
26-- > 3 Completed
27-- > Procedures have been completed.
28-- > 4 Not applicable
29-- > Instructions are not applicable.
30-- > 5 Optimal
31-- > An action which is most desirable but not required.
32-- > 6 Required
33-- > Procedures are required.
34-- > 7 Applicable
35-- > Procedures are applicable.
36simple9411 :: Parser Value
37simple9411 = simple "9411" (alphaNumeric `upTo` 3)