plaid2.model.screening_hit_data module

class plaid2.model.screening_hit_data.ScreeningHitData(*, dates_of_birth: Optional[List[ScreeningHitDateOfBirthItem]] = None, names: Optional[List[ScreeningHitNamesItems]] = None, documents: Optional[List[ScreeningHitDocumentsItems]] = None, locations: Optional[List[GenericScreeningHitLocationItems]] = None)[source]

Bases: BaseModel

dates_of_birth: Optional[List[ScreeningHitDateOfBirthItem]]

Dates of birth associated with the watchlist hit

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

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

documents: Optional[List[ScreeningHitDocumentsItems]]

Documents associated with the watchlist hit

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

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

locations: Optional[List[GenericScreeningHitLocationItems]]

Locations associated with the watchlist hit

names: Optional[List[ScreeningHitNamesItems]]

Names associated with the watchlist hit

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

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