pub struct RiskCheckIdentityAbuseSignals {
pub stolen_identity: Option<RiskCheckStolenIdentity>,
pub synthetic_identity: Option<RiskCheckSyntheticIdentity>,
}Expand description
Result summary object capturing abuse signals related to identity abuse, e.g. stolen and synthetic identity fraud. These attributes are only available for US identities and some signals may not be available depending on what information was collected.
Fields§
§stolen_identity: Option<RiskCheckStolenIdentity>Field containing the data used in determining the outcome of the stolen identity risk check.
Contains the following fields:
score - A score from 0 to 100 indicating the likelihood that the user is a stolen identity.
synthetic_identity: Option<RiskCheckSyntheticIdentity>Field containing the data used in determining the outcome of the synthetic identity risk check.
Contains the following fields:
score - A score from 0 to 100 indicating the likelihood that the user is a synthetic identity.
Trait Implementations§
Source§impl Clone for RiskCheckIdentityAbuseSignals
impl Clone for RiskCheckIdentityAbuseSignals
Source§fn clone(&self) -> RiskCheckIdentityAbuseSignals
fn clone(&self) -> RiskCheckIdentityAbuseSignals
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 Default for RiskCheckIdentityAbuseSignals
impl Default for RiskCheckIdentityAbuseSignals
Source§fn default() -> RiskCheckIdentityAbuseSignals
fn default() -> RiskCheckIdentityAbuseSignals
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RiskCheckIdentityAbuseSignals
impl<'de> Deserialize<'de> for RiskCheckIdentityAbuseSignals
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 RiskCheckIdentityAbuseSignals
impl RefUnwindSafe for RiskCheckIdentityAbuseSignals
impl Send for RiskCheckIdentityAbuseSignals
impl Sync for RiskCheckIdentityAbuseSignals
impl Unpin for RiskCheckIdentityAbuseSignals
impl UnwindSafe for RiskCheckIdentityAbuseSignals
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