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
17
//! Accounts Payable (AP) subledger models.
//!
//! This module provides models for:
//! - Vendor invoices
//! - Vendor payments
//! - Debit memos
//! - Payment schedules and forecasts

mod debit_memo;
mod invoice;
mod payment;
mod schedule;

pub use debit_memo::*;
pub use invoice::*;
pub use payment::*;
pub use schedule::*;