(cls, json_string)
| 934 | """ |
| 935 | @classmethod |
| 936 | def de_json(cls, json_string): |
| 937 | if json_string is None: return None |
| 938 | obj = cls.check_json(json_string, dict_copy=False) |
| 939 | return cls(**obj) |
| 940 | |
| 941 | def __init__(self, message_id, **kwargs): |
| 942 | self.message_id: int = message_id |
nothing calls this directly
no test coverage detected