(token_dict)
| 81 | |
| 82 | @staticmethod |
| 83 | def new_instance(token_dict): |
| 84 | return ChatUserToken(token_dict.get('application_id'), token_dict.get('user_id'), |
| 85 | token_dict.get('access_token'), token_dict.get('type'), token_dict.get('chat_user_type'), |
| 86 | token_dict.get('chat_user_id'), |
| 87 | ChatAuthentication.new_instance(token_dict.get('authentication'))) |
no test coverage detected