plaid2.model.asset_report_item module
- class plaid2.model.asset_report_item.AssetReportItem(*, accounts: List[AccountAssets], item_id: str, date_last_updated: str, institution_id: str, institution_name: str)[source]
Bases:
BaseModel
- accounts: List[AccountAssets]
Data about each of the accounts open on the Item.
- date_last_updated: str
//wikipedia.org/wiki/ISO_8601) format.
- Type
The date and time when this Item’s data was last retrieved from the financial institution, in [ISO 8601](https
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- institution_id: str
The id of the financial institution associated with the Item.
- institution_name: str
The full financial institution name associated with the Item.
- item_id: str
The item_id of the Item associated with this webhook, warning, or error
- 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) AssetReportItem [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) AssetReportItem [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw