case class MyClass(
schema: MyClass1,
data:List[MyClass2],
stringField:String,
)
val obj = MyClass(...)
val str = upickle.default.write(obj)
val obj1 = upickle.default.read[MyClass](str)
Quite strangely, if I remove the 3rd field (stringField), it works fine.
upickle version - 0.4.4
When trying to read a nested case class, I'm getting this error of this form
pseudocode of what I'm trying to do
Quite strangely, if I remove the 3rd field (stringField), it works fine.
ID: 307 Original Author: ghost