Hello,
I'm trying to migrate to 1.3.70 and Serialization 0.20.0. How should I deserialize Kotlin enum? Example:
{ "option": "FirstOption" }
to
data class SomeClass(val option: SomeEnumClass)
where enum declaration is something like
enum class SomeEnumClass { FirstOption, SecondOption }
Deserialization worked like a charm with 1.3.61. But it fails to work with 1.3.70.
What could be wrong here?
How exactly does it fail? It is supposed to work, if it does not, than this is a bug