plaid2.model.dashboard_user module
- class plaid2.model.dashboard_user.DashboardUser(*, created_at: str, email_address: str, id: str, status: str)[source]
Bases:
BaseModel
- created_at: str
An ISO8601 formatted timestamp.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- email_address: str
A valid email address.
- id: str
ID of the associated user.
- 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) DashboardUser [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) DashboardUser [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- status: str
The current status of the user.