I want to make a third-party sealed class serializ...
# serialization
d
I want to make a third-party sealed class serializable. I have a serializer written for all the subclasses, how do I create the polymorphic serializer for the base class in a similar way to
@Serializer(forClass = ThirdPartyClass::class)
?