pub struct EntityWatchlistProgramResponse {
    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,
    pub request_id: RequestId,
}

Fields

id: EntityWatchlistProgramId

ID of the associated entity program.

created_at: Timestamp

An ISO8601 formatted timestamp.

is_rescanning_enabled: bool

Indicator specifying whether the program is enabled and will perform daily rescans.

lists_enabled: Vec<EntityWatchlistCode>

Watchlists enabled for the associated program

name: EntityWatchlistScreeningProgramName

A name for the entity program to define its purpose. For example, “High Risk Organizations” or “Applicants”.

name_sensitivity: ProgramNameSensitivity

The 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: WatchlistScreeningAuditTrail

Information about the last change made to the parent object specifying what caused the change as well as when it occurred.

is_archived: ProgramArchived

Archived programs are read-only and cannot screen new customers nor participate in ongoing monitoring.

request_id: RequestId

A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more