(chat_id)
| 423 | |
| 424 | @staticmethod |
| 425 | def get_cache(chat_id): |
| 426 | chat_info_dict = cache.get(Cache_Version.CHAT.get_key(key=chat_id), |
| 427 | version=Cache_Version.CHAT_INFO.get_version()) |
| 428 | if chat_info_dict: |
| 429 | return ChatInfo.map_to_chat_info(chat_info_dict) |
| 430 | return None |
| 431 | |
| 432 | |
| 433 | def update_resource_mapping_by_application(application_id: str, other_resource_mapping=None): |
no test coverage detected