aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S4343.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D01B/Simples/S4343.hs')
-rw-r--r--specification/src/Text/Edifact/D01B/Simples/S4343.hs112
1 files changed, 112 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D01B/Simples/S4343.hs b/specification/src/Text/Edifact/D01B/Simples/S4343.hs
new file mode 100644
index 0000000..18aa162
--- /dev/null
+++ b/specification/src/Text/Edifact/D01B/Simples/S4343.hs
@@ -0,0 +1,112 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D01B.Simples.S4343
7 ( simple4343
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > * 4343 Response type code [C]
16-- >
17-- > Desc: Code specifying the type of acknowledgment required or
18-- > transmitted.
19-- >
20-- > Repr: an..3
21-- >
22-- > AA Debit advice
23-- > Receiver of the payment message needs to return a debit
24-- > advice in response to the payment message.
25-- >
26-- > AB Message acknowledgement
27-- > Indicates that an acknowledgement relating to receipt of
28-- > message is required.
29-- >
30-- > AC Acknowledge - with detail and change
31-- > Acknowledge complete including changes.
32-- >
33-- > AD Acknowledge - with detail, no change
34-- > Acknowledge complete without changes.
35-- >
36-- > AE Debit advice for each transaction
37-- > A debit advice is requested for each transaction in the
38-- > message.
39-- >
40-- > AF Debit advice/message acknowledgement
41-- > The sender wishes to receive both a Debit Advice and an
42-- > acknowledgement of receipt for a payment message.
43-- >
44-- > AG Authentication
45-- > Authentication, by a party, of a document established
46-- > for him by another party.
47-- >
48-- > AH Debit advice/message acknowledgement for each transaction
49-- > A debit advice and message acknowledgement are requested
50-- > for each transaction in the message.
51-- >
52-- > AI Acknowledge only changes
53-- > Acknowledgement of changes only is required.
54-- >
55-- > AJ Pending
56-- > Indication that the referenced offer or transaction
57-- > (e.g. cargo booking or quotation request) is being dealt
58-- > with.
59-- >
60-- > AP Accepted
61-- > Indication that the referenced offer or transaction
62-- > (e.g., cargo booking or quotation request) has been
63-- > accepted.
64-- >
65-- > AQ Response expected
66-- > The sender of the message expects a response.
67-- >
68-- > AR Direct documentary credit collection
69-- > Documentary credit collection forwarded directly.
70-- >
71-- > AS Credit advice and message acknowledgement
72-- > The receiver of the message is to acknowledge receipt of
73-- > the message and sent a credit advice for each credit.
74-- >
75-- > CA Conditionally accepted
76-- > Indication that the referenced offer or transaction
77-- > (e.g., cargo booking or quotation request) has been
78-- > accepted under conditions indicated in this message.
79-- >
80-- > CO Confirmation of measurements
81-- > Indication that the message contains the physical
82-- > measurements on which the charges will be based.
83-- >
84-- > NA No acknowledgement needed
85-- > Specifies that no acknowledgement is needed in response
86-- > to this message.
87-- >
88-- > RE Rejected
89-- > Indication that the referenced offer or transaction
90-- > (e.g., cargo booking or quotation request) is not
91-- > accepted.
92-- >
93-- > UR Credit advice
94-- > The message recipient is to send a credit advice in
95-- > response to the message.
96-- >
97-- > US Acknowledgement when error
98-- > An acknowledgement is requested when an error occurred.
99-- >
100-- > + UT Acknowledgment due to error
101-- > An acknowledgment is sent because an error was
102-- > identified in the received message.
103-- >
104-- > + UU Alternate date
105-- > The solution proposed in the response applies to another
106-- > date than the one requested.
107-- >
108-- > + UV Alternate service
109-- > The solution proposed in the response applies to another
110-- > service than the one requested.
111simple4343 :: Parser Value
112simple4343 = simple "4343" (alphaNumeric `upTo` 3)