Struct plaid_openapi::model::EntityWatchlistProgram
source · [−]pub struct EntityWatchlistProgram {
pub id: EntityWatchlistProgramId,
pub created_at: Timestamp,
pub is_rescanning_enabled: bool,
pub lists_enabled: Vec<EntityWatchlistCode>,
pub name: EntityWatchlistScreeningProgramName,
pub name_sensitivity: ProgramNameSensitivity,
pub audit_trail: WatchlistScreeningAuditTrail,
pub is_archived: ProgramArchived,
}Fields
id: EntityWatchlistProgramIdID of the associated entity program.
created_at: TimestampAn ISO8601 formatted timestamp.
is_rescanning_enabled: boolIndicator specifying whether the program is enabled and will perform daily rescans.
lists_enabled: Vec<EntityWatchlistCode>Watchlists enabled for the associated program
name: EntityWatchlistScreeningProgramNameA name for the entity program to define its purpose. For example, “High Risk Organizations” or “Applicants”.
name_sensitivity: ProgramNameSensitivityThe valid name matching sensitivity configurations for a screening program. Note that while certain matching techniques may be more prevalent on less strict settings, all matching algorithms are enabled for every sensitivity.
coarse - See more potential matches. This sensitivity will see more broad phonetic matches across alphabets that make missing a potential hit very unlikely. This setting is noisier and will require more manual review.
balanced - A good default for most companies. This sensitivity is balanced to show high quality hits with reduced noise.
strict - Aggressive false positive reduction. This sensitivity will require names to be more similar than coarse and balanced settings, relying less on phonetics, while still accounting for character transpositions, missing tokens, and other common permutations.
exact - Matches must be nearly exact. This sensitivity will only show hits with exact or nearly exact name matches with only basic correction such as extraneous symbols and capitalization. This setting is generally not recommended unless you have a very specific use case.
audit_trail: WatchlistScreeningAuditTrailInformation about the last change made to the parent object specifying what caused the change as well as when it occurred.
is_archived: ProgramArchivedArchived programs are read-only and cannot screen new customers nor participate in ongoing monitoring.
Trait Implementations
sourceimpl Debug for EntityWatchlistProgram
impl Debug for EntityWatchlistProgram
sourceimpl<'de> Deserialize<'de> for EntityWatchlistProgram
impl<'de> Deserialize<'de> for EntityWatchlistProgram
sourcefn 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
sourceimpl Serialize for EntityWatchlistProgram
impl Serialize for EntityWatchlistProgram
Auto Trait Implementations
impl RefUnwindSafe for EntityWatchlistProgram
impl Send for EntityWatchlistProgram
impl Sync for EntityWatchlistProgram
impl Unpin for EntityWatchlistProgram
impl UnwindSafe for EntityWatchlistProgram
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more