package uprrp.tania.models; import java.util.ArrayList; public class AnsweredAssessmentModel { // NOTE these attribute must have the same names as the JSON fields we'll be sending to the server private final String id_subquestionnair; private final String token; private final ArrayList preguntas; public AnsweredAssessmentModel(String id, String token, ArrayList answeredQuestions) { this.id_subquestionnair = id; this.token = token; this.preguntas = answeredQuestions; } }