I hava json in the following form:
"result":[
   {"question":"3", "answer":"Doe"},
   {"question":"5", "answer":"Smith"},
   {"question":"8","answer":"Jones"}
]
and a Java class ->
public class UserResponses {
    private Integer question;
    private String answer;
//getters and setters
}
How can i parse the json into a List of UserResponses? For example, with GSON?
 
     
    