plaid2.model.create_entity_watchlist_screening_review_request module

class plaid2.model.create_entity_watchlist_screening_review_request.CreateEntityWatchlistScreeningReviewRequest(*, comment: Optional[str] = None, dismissed_hits: List[str], confirmed_hits: List[str], entity_watchlist_screening_id: str)[source]

Bases: BaseModel

comment: Optional[str]

A comment submitted by a team member as part of reviewing a watchlist screening.

confirmed_hits: List[str]

Hits to mark as a true positive after thorough manual review. These hits will never recur or be updated once dismissed. In most cases, confirmed hits indicate that the customer should be rejected.

dict(**kwargs: Any) Dict[str, Any][source]

Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict

dismissed_hits: List[str]

Hits to mark as a false positive after thorough manual review. These hits will never recur or be updated once dismissed.

entity_watchlist_screening_id: str

ID of the associated entity screening.

json(**kwargs: Any) str[source]

Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json

classmethod parse_obj(data: Any) CreateEntityWatchlistScreeningReviewRequest[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) CreateEntityWatchlistScreeningReviewRequest[source]

Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw