Is partial deserialisation supported? I have a Jso...
# serialization
d
Is partial deserialisation supported? I have a Json object where I know some fields will be there and others may not but I don't know what they are called at compile time. Can the plugin shove all the unknown keys into a
JsonObject
member?
🚫 1
s
Just a guess: Deserialize to map, let the map back an object
d
That's my current work-around.