Is there a way to retrieve the default generated s...
# serialization
a
Is there a way to retrieve the default generated serializer from a class that have a custom serializer ?
e
there isn't a generated serializer if a custom one is set via
@Serializable(with = )
a
Ah okay, so I have to recreate one from scratch ?
e
or use
@Serializer(forClass = )
to generate another one
usual caveats apply to external serialization
a
Oooh yes you're right ! Thanks you for the information
j
In the past you can use companion object to extend it and implement the serializer there, but I haven't tried it for a while, not sure if it still works