]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/src/Text/Edifact/D96A/Segments/CUX.hs
Release code as open source
[github/fretlink/edi-parser.git] / specification / src / Text / Edifact / D96A / Segments / CUX.hs
1 {-# LANGUAGE OverloadedStrings #-}
2
3 ---- Machine generated code.
4 ---- Output of edi-parser-scaffolder
5
6 module Text.Edifact.D96A.Segments.CUX
7 ( -- * Definition
8 segmentCUX
9 -- * Dependencies
10 , compositeC504
11 , simple5402
12 , simple6341
13 ) where
14
15 import Text.Edifact.D96A.Composites (compositeC504)
16 import Text.Edifact.D96A.Simples (simple5402, simple6341)
17
18 import Text.Edifact.Parsing
19 import Text.Edifact.Types (Value)
20
21 -- | Derived from this specification:
22 --
23 -- > CUX CURRENCIES
24 -- >
25 -- > Function: To specify currencies used in the transaction and
26 -- > relevant details for the rate of exchange.
27 -- >
28 -- > 010 C504 CURRENCY DETAILS C
29 -- > 6347 Currency details qualifier M an..3
30 -- > 6345 Currency, coded C an..3
31 -- > 6343 Currency qualifier C an..3
32 -- > 6348 Currency rate base C n..4
33 -- >
34 -- > 020 C504 CURRENCY DETAILS C
35 -- > 6347 Currency details qualifier M an..3
36 -- > 6345 Currency, coded C an..3
37 -- > 6343 Currency qualifier C an..3
38 -- > 6348 Currency rate base C n..4
39 -- >
40 -- > 030 5402 RATE OF EXCHANGE C n..12
41 -- >
42 -- > 040 6341 CURRENCY MARKET EXCHANGE, CODED C an..3
43 --
44 -- Dependencies: 'compositeC504', 'simple5402', 'simple6341'.
45 segmentCUX :: Parser Value
46 segmentCUX =
47 segment "CUX"
48 [ "010" .@ optional compositeC504
49 , "020" .@ optional compositeC504
50 , "030" .@ optional simple5402
51 , "040" .@ optional simple6341
52 ]