Skip to main content

datasynth_core/models/banking/
mod.rs

1//! Banking domain models for KYC/AML synthetic data generation.
2//!
3//! This module provides shared types used by the banking transaction generator
4//! for compliance testing, AML model training, and fraud analytics.
5
6mod account_type;
7mod aml_typology;
8mod customer_type;
9mod risk_tier;
10mod transaction_type;
11
12pub use account_type::*;
13pub use aml_typology::*;
14pub use customer_type::*;
15pub use risk_tier::*;
16pub use transaction_type::*;