datasynth-core 2.4.0

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Banking domain models for KYC/AML synthetic data generation.
//!
//! This module provides shared types used by the banking transaction generator
//! for compliance testing, AML model training, and fraud analytics.

mod account_type;
mod aml_typology;
mod customer_type;
mod risk_tier;
mod transaction_type;

pub use account_type::*;
pub use aml_typology::*;
pub use customer_type::*;
pub use risk_tier::*;
pub use transaction_type::*;