Hi I'm forcing problem with probably deserializer. So I've got response object like:
Map<Pair<Int, String>, List<DTO>>
But in swagger model it's visible as:
{ < * >: [...] }
Ofc I have jackson deserializer based on Deserializing non-string map keys with Jackson
Update : I'm expecting to have instead of < * >. Or some nammed by me values like id and name. I've also tried to set Object in place of key instead of pair but nothing happens.
Map<Keyobj, List<DTO>>
data class Keyobj(val int: Int, val string: String)