(self)
| 144 | return response |
| 145 | |
| 146 | async def get_account_standing(self): |
| 147 | parameters = "/me/account-standing" |
| 148 | method = "GET" |
| 149 | response = await self._request(method=method, parameters=parameters) |
| 150 | return response |
| 151 | |
| 152 | async def get_location(self) -> Optional[dict]: |
| 153 | parameters = "/meta/location" |