12345678910111213141516 |
- 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<AnsweredQuestionModel> preguntas;
-
- public AnsweredAssessmentModel(String id, String token, ArrayList<AnsweredQuestionModel> answeredQuestions) {
- this.id_subquestionnair = id;
- this.token = token;
- this.preguntas = answeredQuestions;
- }
- }
|