Gets the currently active authentication credentials from the global auth manager.\n\nReturns:\n Current authentication state
(self, *, timeout: float | None = None)
| 25116 | return AccountGetQuotaResult.from_dict(await self._client.request("account.getQuota", params_dict, **_timeout_kwargs(timeout))) |
| 25117 | |
| 25118 | async def get_current_auth(self, *, timeout: float | None = None) -> AccountGetCurrentAuthResult: |
| 25119 | "Gets the currently active authentication credentials from the global auth manager.\n\nReturns:\n Current authentication state" |
| 25120 | return AccountGetCurrentAuthResult.from_dict(await self._client.request("account.getCurrentAuth", {}, **_timeout_kwargs(timeout))) |
| 25121 | |
| 25122 | async def get_all_users(self, *, timeout: float | None = None) -> list: |
| 25123 | "Gets all authenticated users available for account switching.\n\nReturns:\n List of all authenticated users" |
nothing calls this directly
no test coverage detected