The closest response data type description I can get is
map of object (JSON)
with a response example of
...
when I use the annotation
@TypeHint(Map.class)
Ideally I need to specify a response type of Map<String, String>
, HashMap<String, String>
, or something that would provide a response data type that makes sense and a response example similar to
{
"...": "...",
"...": "..."
}