aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S4219.hs
diff options
context:
space:
mode:
authorFrédéric Menou <frederic.menou@fretlink.com>2016-12-08 10:19:15 +0200
committerIsmaël Bouya <ismael.bouya@fretlink.com>2022-05-17 18:01:51 +0200
commita9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 (patch)
treeadf3186fdccaeef19151026cdfbd38a530cf9ecb /specification/src/Text/Edifact/D01B/Simples/S4219.hs
downloadedi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.gz
edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.zst
edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.zip
Release code as open sourceHEADmaster
Diffstat (limited to 'specification/src/Text/Edifact/D01B/Simples/S4219.hs')
-rw-r--r--specification/src/Text/Edifact/D01B/Simples/S4219.hs39
1 files changed, 39 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D01B/Simples/S4219.hs b/specification/src/Text/Edifact/D01B/Simples/S4219.hs
new file mode 100644
index 0000000..c218c1e
--- /dev/null
+++ b/specification/src/Text/Edifact/D01B/Simples/S4219.hs
@@ -0,0 +1,39 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.Simples.S4219
7 ( simple4219
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > 4219 Transport service priority code [B]
16-- >
17-- > Desc: Code specifying the priority of a transport service.
18-- >
19-- > Repr: an..3
20-- >
21-- > 1 Express
22-- > Express treatment (if by rail, legal express regime for
23-- > parcels transport).
24-- >
25-- > 2 High speed
26-- > Transport under legal international rail convention
27-- > (CIM) concluded between rail organizations and based on
28-- > fast routing and specified timetables.
29-- >
30-- > 3 Normal speed
31-- > Transport under legal international rail convention
32-- > (CIM) concluded between rail organizations.
33-- >
34-- > 4 Post service
35-- > Transport under conditions specified by UPU (Universal
36-- > Postal Union) and Rail organizations (parcels transport
37-- > only).
38simple4219 :: Parser Value
39simple4219 = simple "4219" (alphaNumeric `upTo` 3)