plaid2.model.item_status_transactions module

class plaid2.model.item_status_transactions.ItemStatusTransactions(*, last_failed_update: Optional[str] = None, last_successful_update: Optional[str] = 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

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

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

last_failed_update: Optional[str]

//wikipedia.org/wiki/ISO_8601) timestamp of the last failed transactions update for the Item. The status will update each time Plaid fails an attempt to connect with the institution, regardless of whether any new data is available in the update.

Type

[ISO 8601](https

last_successful_update: Optional[str]

//wikipedia.org/wiki/ISO_8601) timestamp of the last successful transactions update for the Item. The status will update each time Plaid successfully connects with the institution, regardless of whether any new data is available in the update.

Type

[ISO 8601](https

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

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