I don\'t know if it is possible to deserialise arrays into hashMap i have got json :
\"additionalProperties\": [ { \"$type\": \"Tfl.Api.Presentation.Entit
Moshi supports fields declared as Map but not as HashMap. This way Moshi can use a different implementation of Map that’s more appropriate than HashMap for decoded JSON. If you change your field’s type to Map it should work.
Map
HashMap