(cls, json_string)
| 538 | """ |
| 539 | @classmethod |
| 540 | def de_json(cls, json_string): |
| 541 | if json_string is None: return None |
| 542 | obj = cls.check_json(json_string, dict_copy=False) |
| 543 | return cls(**obj) |
| 544 | |
| 545 | # noinspection PyShadowingBuiltins |
| 546 | def __init__(self, id, is_bot, first_name, last_name=None, username=None, language_code=None, |