plaid2.model.individual_watchlist_program_response module
- class plaid2.model.individual_watchlist_program_response.IndividualWatchlistProgramResponse(*, name_sensitivity: str, is_archived: bool, created_at: str, id: str, lists_enabled: List[str], audit_trail: WatchlistScreeningAuditTrail, request_id: str, is_rescanning_enabled: bool, name: str)[source]
Bases:
BaseModel
- audit_trail: WatchlistScreeningAuditTrail
Information about the last change made to the parent object specifying what caused the change as well as when it occurred.
- created_at: str
An ISO8601 formatted timestamp.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- id: str
ID of the associated program.
- is_archived: bool
Archived programs are read-only and cannot screen new customers nor participate in ongoing monitoring.
- is_rescanning_enabled: bool
Indicator specifying whether the program is enabled and will perform daily rescans.
- json(**kwargs: Any) str [source]
Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json
- lists_enabled: List[str]
Watchlists enabled for the associated program
- name_: str
A name for the program to define its purpose. For example, “High Risk Individuals”, “US Cardholders”, or “Applicants”.
- name_sensitivity: str
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.
- classmethod parse_obj(data: Any) IndividualWatchlistProgramResponse [source]
Parse a dict into the object. Takes same keyword arguments as pydantic.BaseModel.parse_obj
- classmethod parse_raw(b: Union[bytes, str], **kwargs: Any) IndividualWatchlistProgramResponse [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- request_id: str
A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.