plaid2.model.bank_transfer_sweep module
- class plaid2.model.bank_transfer_sweep.BankTransferSweep(*, iso_currency_code: str, id: str, created_at: str, amount: str)[source]
Bases:
BaseModel
- amount: str
The amount of the sweep.
- created_at: str
The datetime when the sweep occurred, in RFC 3339 format.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- id: str
Identifier of the sweep.
- iso_currency_code: str
The currency of the sweep, e.g. “USD”.
- 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) BankTransferSweep [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) BankTransferSweep [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw