(authentication: str)
| 50 | |
| 51 | @staticmethod |
| 52 | def new_instance(authentication: str): |
| 53 | auth = json.loads(_decrypt(authentication)) |
| 54 | return ChatAuthentication(**auth) |
| 55 | |
| 56 | |
| 57 | class ChatUserToken: |
nothing calls this directly
no test coverage detected