tellopk.blogg.se

Kotlin implement serializable
Kotlin implement serializable







Either code solutions, or links to examples/docs would be super helpful. How would I go about being able to serialize/deserialize this class. The docs aren't clear enough for my use case. I also think I need to declare the serializersModule, likeīut, I can't get this to work. I've read through the docs and I think I need to declare the Any to be contextual, like 'List' As per the documentation you link to, you can create external serializers for library classes. I do want it to be possible to put a String and an Int into this list, at the same time. I'm not looking to support other objects. I only want to have Any be a String or a primitive. The elements that will be in this list are arguments for functions I will be calling. The args parameter is for a list of 'Any?'. But, I haven't found anything in the documentation, or any examples elsewhere, that look useful for what I'm trying to do. To use context serializer as fallback, explicitly annotate type or property with googled that I probably have to write a custom serializer and deserializer for this use case.

kotlin implement serializable

Serializer has not been found for type 'Any?'. IntelliJ gives me a red line on the 'Any?', and it says

kotlin implement serializable

This doesn't seem to work by default with Kotlin Serialization. I have a class that looks like class M圜lass(

kotlin implement serializable

It's been pretty nice, but I've run into a pain point. I'm migrating a project from Gson to Kotlin Serialization.









Kotlin implement serializable