pub enum WatchlistScreeningHitStatus {
Confirmed,
PendingReview,
Dismissed,
}Expand description
The current state of review. All watchlist screening hits begin in a pending_review state but can be changed by creating a review. When a hit is in the pending_review state, it will always show the latest version of the watchlist data Plaid has available and be compared against the latest customer information saved in the watchlist screening. Once a hit has been marked as confirmed or dismissed it will no longer be updated so that the state is as it was when the review was first conducted.
Variants§
Trait Implementations§
Source§impl Clone for WatchlistScreeningHitStatus
impl Clone for WatchlistScreeningHitStatus
Source§fn clone(&self) -> WatchlistScreeningHitStatus
fn clone(&self) -> WatchlistScreeningHitStatus
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 WatchlistScreeningHitStatus
impl Debug for WatchlistScreeningHitStatus
Source§impl<'de> Deserialize<'de> for WatchlistScreeningHitStatus
impl<'de> Deserialize<'de> for WatchlistScreeningHitStatus
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 WatchlistScreeningHitStatus
impl RefUnwindSafe for WatchlistScreeningHitStatus
impl Send for WatchlistScreeningHitStatus
impl Sync for WatchlistScreeningHitStatus
impl Unpin for WatchlistScreeningHitStatus
impl UnwindSafe for WatchlistScreeningHitStatus
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