pub struct EntityScreeningHitNames {
pub full: String,
pub is_primary: bool,
pub weak_alias_determination: WeakAliasDetermination,
}Expand description
Name information for the associated entity watchlist hit
Fields§
§full: StringThe full name of the entity.
is_primary: boolPrimary names are those most commonly used to refer to this entity. Only one name will ever be marked as primary.
weak_alias_determination: WeakAliasDeterminationNames that are explicitly marked as low quality either by their source list, or by plaid by a series of additional checks done by Plaid. Plaid does not ever surface a hit as a result of a weak name alone. If a name has no quality issues, this value will be none.
Trait Implementations§
Source§impl Clone for EntityScreeningHitNames
impl Clone for EntityScreeningHitNames
Source§fn clone(&self) -> EntityScreeningHitNames
fn clone(&self) -> EntityScreeningHitNames
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 EntityScreeningHitNames
impl Debug for EntityScreeningHitNames
Source§impl<'de> Deserialize<'de> for EntityScreeningHitNames
impl<'de> Deserialize<'de> for EntityScreeningHitNames
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
Source§impl Display for EntityScreeningHitNames
impl Display for EntityScreeningHitNames
Auto Trait Implementations§
impl Freeze for EntityScreeningHitNames
impl RefUnwindSafe for EntityScreeningHitNames
impl Send for EntityScreeningHitNames
impl Sync for EntityScreeningHitNames
impl Unpin for EntityScreeningHitNames
impl UnwindSafe for EntityScreeningHitNames
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