A simple class with __dict__ but no model_dump or dict method.
| 26 | |
| 27 | |
| 28 | class SimpleModel: |
| 29 | """A simple class with __dict__ but no model_dump or dict method.""" |
| 30 | |
| 31 | def __init__(self, value: str): |
| 32 | self.value = value |
| 33 | |
| 34 | |
| 35 | class ModelWithToJson: |
no outgoing calls
searching dependent graphs…