pub enum BalancePlusRiskLevel {
High,
MediumHigh,
Medium,
MediumLow,
Low,
}
Expand description
A five-tier risk assessment for the transaction, based on the probability distribution of ACH returns, measured by the incident rate.
Each tier corresponds to a distribution with a different mean (average) probability.
HIGH
: The mean probability of ACH return risk is above 40%.
MEDIUM_HIGH
: The mean probability of ACH return risk is 15%-40%.
MEDIUM
: The mean probability of ACH return risk is 5-10%.
MEDIUM_LOW
: The mean probability of ACH return risk is 1%-2%.
LOW
: The mean probability of ACH return risk is below 1%.
Note that these tiers correspond to probability distributions and not to discrete probabilities.
These tier definitions are specific to Balance Plus and do not apply to risk tiers generated by other Plaid endpoints.
Variants§
Trait Implementations§
Source§impl Clone for BalancePlusRiskLevel
impl Clone for BalancePlusRiskLevel
Source§fn clone(&self) -> BalancePlusRiskLevel
fn clone(&self) -> BalancePlusRiskLevel
Returns a copy 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 BalancePlusRiskLevel
impl Debug for BalancePlusRiskLevel
Source§impl<'de> Deserialize<'de> for BalancePlusRiskLevel
impl<'de> Deserialize<'de> for BalancePlusRiskLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BalancePlusRiskLevel
impl RefUnwindSafe for BalancePlusRiskLevel
impl Send for BalancePlusRiskLevel
impl Sync for BalancePlusRiskLevel
impl Unpin for BalancePlusRiskLevel
impl UnwindSafe for BalancePlusRiskLevel
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