You need to add the snippetResult
property definition to the class you have used for your searchResult class. It might look something like this:
@JsonProperty("_snippetResult")
private Object snippetResult;
You may want to define snippetResult
as Map<String,List<Map>>
for an easier access to different fields.