Closed DRSchlaubi closed 12 months ago
It would be a good idea to add serialisation/deserialisation helpers as well
It allows for serialization of JsonPrimitive, JsonArray and JsonObject
It allows for serialization of JsonPrimitive, JsonArray and JsonObject
But what about
public record MyTrackUserData(long userId, String anotherArg) {}
Currently it cannot handle this for java users
It allows for serialization of JsonPrimitive, JsonArray and JsonObject
But what about
public record MyTrackUserData(long userId, String anotherArg) {}
Currently it cannot handle this for java users
Well yeah, but kotlinx.serialization has a compiler plugin, which generates the serializer (this is what @Serializable does), you cannot do that for a java record, so I can't handle that
It would be a good idea to add serialisation/deserialisation helpers as well