Я получил ответ, который представляет собой карту объектов, но все они имеют один и тот же ключ:
{
"hits": [
{
"recipe": {
"id" : "0",
"label" : "chicken noodles",
...
},
"another_field": "value"
},
{
"recipe": {
"id" : "1",
"label" : "fried chicken",
...
},
"another_field": "value"
},
{ "recipe": {...}, ... }
]
}
My Pojo:
public class SearchRecipeResponse {
private List<RecipeResponse> hits;
public List<RecipeResponse> getHits() {
return hits;
}
}
public class RecipeResponse{
private String label;
...
getters, etc
}
Результат выглядит как список объектов, но все объекты равны нулю, потому что полезная нагрузка json имеет этот ключевой «рецепт».