plaid2.model.item_status module
- class plaid2.model.item_status.ItemStatus(*, transactions: Optional[ItemStatusTransactions] = None, investments: Optional[ItemStatusInvestments] = None, last_webhook: Optional[ItemStatusLastWebhook] = None)[source]
Bases:
BaseModel
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- investments: Optional[ItemStatusInvestments]
Information about the last successful and failed investments update for the Item.
- json(**kwargs: Any) str [source]
Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json
- last_webhook: Optional[ItemStatusLastWebhook]
Information about the last webhook fired for the Item.
- classmethod parse_obj(data: Any) ItemStatus [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) ItemStatus [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- transactions: Optional[ItemStatusTransactions]
Information about the last successful and failed transactions update for the Item.