pub struct IndividualWatchlistProgramResponse {
    pub id: WatchlistProgramId,
    pub created_at: Timestamp,
    pub is_rescanning_enabled: bool,
    pub lists_enabled: Vec<IndividualWatchlistCode>,
    pub name: IndividualWatchlistScreeningProgramName,
    pub name_sensitivity: ProgramNameSensitivity,
    pub audit_trail: WatchlistScreeningAuditTrail,
    pub is_archived: ProgramArchived,
    pub request_id: RequestId,
}Fields
id: WatchlistProgramIdID of the associated 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<IndividualWatchlistCode>Watchlists enabled for the associated program
name: IndividualWatchlistScreeningProgramNameA name for the program to define its purpose. For example, “High Risk Individuals”, “US Cardholders”, 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.
request_id: RequestIdA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for IndividualWatchlistProgramResponse
 
impl<'de> Deserialize<'de> for IndividualWatchlistProgramResponse
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
Auto Trait Implementations
impl RefUnwindSafe for IndividualWatchlistProgramResponse
impl Send for IndividualWatchlistProgramResponse
impl Sync for IndividualWatchlistProgramResponse
impl Unpin for IndividualWatchlistProgramResponse
impl UnwindSafe for IndividualWatchlistProgramResponse
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