If I have a json string blob like: ```{ foo: [1,...
# serialization
a
If I have a json string blob like:
Copy code
{
  foo: [1, 2, 3]
}
Is there a way to deserialize that into
Copy code
data class MyClass(val foo: String)
and have the value of
MyClass.foo
be the string
"[1, 2, 3]"
?
a
Thanks for the link! subscribed to the ticket