open_payments_iso20022_reda/lib.rs
1// Open Payment Message Parsing Library
2// https://github.com/Open-Payments/iso20022-rs
3//
4// This library is designed to parse message formats based on the ISO 20022 standards,
5// including but not limited to FedNow messages. It supports various financial message types,
6// such as customer credit transfers, payment status reports, administrative notifications,
7// and other ISO 20022 messages, using Serde for efficient serialization and deserialization.
8//
9// Copyright (c) 2024 Open Payments
10// Licensed under the Apache License, Version 2.0 (the "License");
11// you may not use this file except in compliance with the License.
12// You may obtain a copy of the License at
13//
14// http://www.apache.org/licenses/LICENSE-2.0
15//
16// Unless required by applicable law or agreed to in writing, software
17// distributed under the License is distributed on an "AS IS" BASIS,
18// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19// See the License for the specific language governing permissions and
20// limitations under the License.
21//
22// You may obtain a copy of this library at
23// https://github.com/Open-Payments/iso20022-rs
24
25
26pub mod reda_001_001_04;
27pub mod reda_002_001_04;
28pub mod reda_004_001_07;
29pub mod reda_005_001_03;
30pub mod reda_006_001_01;
31pub mod reda_007_001_01;
32pub mod reda_008_001_01;
33pub mod reda_009_001_01;
34pub mod reda_010_001_01;
35pub mod reda_012_001_01;
36pub mod reda_013_001_01;
37pub mod reda_014_001_02;
38pub mod reda_015_001_01;
39pub mod reda_016_001_01;
40pub mod reda_017_001_02;
41pub mod reda_018_001_01;
42pub mod reda_019_001_01;
43pub mod reda_020_001_01;
44pub mod reda_021_001_01;
45pub mod reda_022_001_02;
46pub mod reda_023_001_01;
47pub mod reda_029_001_01;
48pub mod reda_030_001_01;
49pub mod reda_031_001_01;
50pub mod reda_032_001_01;
51pub mod reda_033_001_01;
52pub mod reda_034_001_01;
53pub mod reda_035_001_01;
54pub mod reda_036_001_01;
55pub mod reda_037_001_01;
56pub mod reda_041_001_02;
57pub mod reda_042_001_01;
58pub mod reda_043_001_02;
59pub mod reda_056_001_01;
60pub mod reda_057_001_01;
61pub mod reda_058_001_01;
62pub mod reda_059_001_01;
63pub mod reda_060_001_02;
64pub mod reda_061_001_02;
65pub mod reda_064_001_02;
66pub mod reda_065_001_02;
67pub mod reda_066_001_02;
68pub mod reda_067_001_02;
69pub mod reda_068_001_02;
70pub mod reda_069_001_02;
71pub mod reda_070_001_02;
72pub mod reda_071_001_02;
73pub mod reda_072_001_02;
74pub mod reda_073_001_02;