schemas
Monzo API 'whoami' related schemas.
MonzoWhoAmI
Bases: BaseModel
API schema for a 'whoami' object.
Note
Monzo API docs: https://docs.monzo.com/#authenticating-requests
Attributes:
| Name | Type | Description |
|---|---|---|
authenticated |
bool
|
Whether the user is authenticated. |
client_id |
str
|
Client ID. |
user_id |
str
|
User ID. |
Source code in pymonzo/whoami/schemas.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
__rich__()
Pretty printing support for rich.
Source code in pymonzo/whoami/schemas.py
34 35 36 37 38 39 40 41 42 43 | |