I feel really stupid, but I can’t seem to find jso...
# random
o
I feel really stupid, but I can’t seem to find json serializer that is not trying to be too smart. I have an interface like this:
Copy code
interface Contact {
    val id: Long
    val address: String
    val notes: String?
    val kind: String
}
Implementation is asm-generated and going deep into internals of some processing system. Any library that can serialize it as is without trying to reflect too deep?