Convert the JSON representation back to the correct type. The tag will already be removed.
(self, value: t.Any)
| 80 | raise NotImplementedError |
| 81 | |
| 82 | def to_python(self, value: t.Any) -> t.Any: |
| 83 | """Convert the JSON representation back to the correct type. The tag |
| 84 | will already be removed.""" |
| 85 | raise NotImplementedError |
| 86 | |
| 87 | def tag(self, value: t.Any) -> dict[str, t.Any]: |
| 88 | """Convert the value to a valid JSON type and add the tag structure |