Hi guys. I need some help. ```val module = Seriali...
# serialization
j
Hi guys. I need some help.
Copy code
val module = SerializersModule {
    polymorphic(Project::class) {
        subclass(OwnedProject::class)
    }
}
So, I was looking into Open polymorphism and can’t get it working for me. For some reason it only works when I have two levels, like in the example from above. How to init SerializersModule in case I have 3+ levels (e.g. OwnedProject is parent of OwnedChildeProject)?
j
Got it! Thanks.