(self, *, data: Dict[str, Any])
| 18 | ) |
| 19 | |
| 20 | def __init__(self, *, data: Dict[str, Any]): |
| 21 | self._avatar = data.get("avatar") |
| 22 | self._away = data.get("away") |
| 23 | self._flags = data.get("flags") |
| 24 | self._has_valid_steam_api_key = data.get("has_valid_steam_api_key") |
| 25 | self._obfuscated_id = data.get("obfuscated_id") |
| 26 | self._online = data.get("online") |
| 27 | self._stall_public = data.get("stall_public") |
| 28 | self._statistics = data.get("statistics") |
| 29 | self._steam_id = data.get("steam_id") |
| 30 | self._username = data.get("username") |
| 31 | self._verification_mode = data.get("verification_mode") |
| 32 | |
| 33 | @property |
| 34 | def avatar(self) -> Optional[str]: |
nothing calls this directly
no outgoing calls
no test coverage detected