(cls, json_string)
| 607 | """ |
| 608 | @classmethod |
| 609 | def de_json(cls, json_string): |
| 610 | if json_string is None: return None |
| 611 | obj = cls.check_json(json_string, dict_copy=False) |
| 612 | return cls(**obj) |
| 613 | |
| 614 | def __init__(self, id, title, **kwargs): |
| 615 | self.id: int = id |
nothing calls this directly
no test coverage detected