pub struct ConfirmationGeneratorConfig {
pub confirmations_per_engagement: (u32, u32),
pub bank_balance_ratio: f64,
pub accounts_receivable_ratio: f64,
pub confirmed_response_ratio: f64,
pub exception_response_ratio: f64,
pub no_response_ratio: f64,
pub exception_reconciled_ratio: f64,
}Expand description
Configuration for external confirmation generation (ISA 505).
Fields§
§confirmations_per_engagement: (u32, u32)Number of confirmations per engagement (min, max)
bank_balance_ratio: f64Fraction of confirmations that are bank balance type
accounts_receivable_ratio: f64Fraction of confirmations that are accounts receivable type
confirmed_response_ratio: f64Fraction of confirmations that receive a clean “Confirmed” response
exception_response_ratio: f64Fraction of confirmations that receive a “ConfirmedWithException” response
no_response_ratio: f64Fraction of confirmations that receive no reply
exception_reconciled_ratio: f64Of the exception responses, fraction that are subsequently reconciled
Trait Implementations§
Source§impl Clone for ConfirmationGeneratorConfig
impl Clone for ConfirmationGeneratorConfig
Source§fn clone(&self) -> ConfirmationGeneratorConfig
fn clone(&self) -> ConfirmationGeneratorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfirmationGeneratorConfig
impl Debug for ConfirmationGeneratorConfig
Auto Trait Implementations§
impl Freeze for ConfirmationGeneratorConfig
impl RefUnwindSafe for ConfirmationGeneratorConfig
impl Send for ConfirmationGeneratorConfig
impl Sync for ConfirmationGeneratorConfig
impl Unpin for ConfirmationGeneratorConfig
impl UnsafeUnpin for ConfirmationGeneratorConfig
impl UnwindSafe for ConfirmationGeneratorConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more