Hi, is it possible to configure the serializer to...
# serialization
p
Hi, is it possible to configure the serializer to use simple class name instead of qualified class name for polymorphic serialization type field or do I have to write a custom serializer to achieve this?
s
You can use
@SerialName
on class
p
You can use
@SerialName
on class
Thanks for the answer. It works as expected.