question about serializer modules... if i have an ...
# serialization
r
question about serializer modules... if i have an interface
IParameter
and two implementations,
Parameter
and
ExtensibleParameter
.... is there a way that I can get kotlinx to serialize these two implementations as json without including a
type
field? I understand that this is a 1 way operation, as you would effectively lose the ability to deserialize, but, in my use case, I simply need to be able to encode these classes as json, and never read them back into their implementations.