I've got a jsonl file with lines like ```{"id": 12...
# serialization
r
I've got a jsonl file with lines like
Copy code
{"id": 12 ... }
{"key": 555 ... }
Where I've got two kinds of lines. How could I write a deserializer into a sealed class where it tries to decode with one subclass, then the next, as there are no type tags?
p
r
Oh sweet, thanks!