open_payments_fednow/iso/mod.rs
1// Open Payment Message Parsing Library
2// https://github.com/Open-Payments/messages
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 by Harishankar Narayanan
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/messages
24
25
26pub mod admi_002_001_01;
27pub mod admi_004_001_02;
28pub mod admi_006_001_01;
29pub mod admi_007_001_01;
30pub mod admi_011_001_01;
31pub mod admi_998_001_02;
32pub mod camt_026_001_07;
33pub mod camt_028_001_09;
34pub mod camt_029_001_09;
35pub mod camt_052_001_08;
36pub mod camt_054_001_08;
37pub mod camt_055_001_09;
38pub mod camt_056_001_08;
39pub mod camt_060_001_05;
40pub mod head_001_001_02;
41pub mod pacs_002_001_10;
42pub mod pacs_004_001_10;
43pub mod pacs_008_001_08;
44pub mod pacs_009_001_08;
45pub mod pacs_028_001_03;
46pub mod pain_013_001_07;
47pub mod pain_014_001_07;