Hello, I have a serializable class that holds one parameter (a map) and I'd like to be able to serialize it directly using that map's serializer, without the parameter name.
I've managed to write my own serializer that just uses a map serializer and its descriptor to do this, and it works exactly how I want. The only issue is, I now want to use this with polymorphic serialization and I can't seem to find a way to change the SerialName.
Is there a better way to do this, or any way to change the SerialName on an existing descriptor? Thanks in advance!