Skip to main content

open_payments_iso20022_acmt/
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 acmt_001_001_08;
27pub mod acmt_002_001_08;
28pub mod acmt_003_001_08;
29pub mod acmt_005_001_06;
30pub mod acmt_006_001_07;
31pub mod acmt_007_001_05;
32pub mod acmt_008_001_05;
33pub mod acmt_009_001_04;
34pub mod acmt_010_001_04;
35pub mod acmt_011_001_04;
36pub mod acmt_012_001_04;
37pub mod acmt_013_001_04;
38pub mod acmt_014_001_05;
39pub mod acmt_015_001_04;
40pub mod acmt_016_001_04;
41pub mod acmt_017_001_04;
42pub mod acmt_018_001_04;
43pub mod acmt_019_001_04;
44pub mod acmt_020_001_04;
45pub mod acmt_021_001_04;
46pub mod acmt_022_001_04;
47pub mod acmt_023_001_04;
48pub mod acmt_024_001_04;
49pub mod acmt_027_001_05;
50pub mod acmt_028_001_05;
51pub mod acmt_029_001_05;
52pub mod acmt_030_001_04;
53pub mod acmt_031_001_05;
54pub mod acmt_032_001_05;
55pub mod acmt_033_001_02;
56pub mod acmt_034_001_05;
57pub mod acmt_035_001_02;
58pub mod acmt_036_001_01;
59pub mod acmt_037_001_02;