Esempio n. 1
0
 def response_choiceSequence(self):
     """Return the choice sequence."""
     return utils.safeget(self._item_dict, "response", "RESPONSE",
                          "choiceSequence")
Esempio n. 2
0
 def api_call_params_start_time_until(self):
     """Return the parameter modistart_time_untilfied_until used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params",
                          "start_time_until")
Esempio n. 3
0
 def api_call_params_status(self):
     """Return the parameter status used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params", "status")
Esempio n. 4
0
 def api_call_params_candidate_codes(self):
     """Return the parameter candidate_codes used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params",
                          "candidate_codes")
Esempio n. 5
0
 def api_call_params_type(self):
     """Return the parameter candidate_filter used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params", "type")
Esempio n. 6
0
 def grade_formatted(self):
     """Return the Remindo grade formatted for the result."""
     return utils.safeget(self._result_dict, "grade_formatted")
Esempio n. 7
0
 def api_call_params_id(self):
     """Return the parameter id used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params", "id")
Esempio n. 8
0
 def max_score(self):
     """Return the Remindo max score for the result."""
     return utils.safeget(self._result_dict, "max_score")
Esempio n. 9
0
 def i_right(self):
     """Return the Remindo item answered right for the result."""
     return utils.safeget(self._result_dict, "i_right")
Esempio n. 10
0
 def start_time(self):
     """Return the Remindo start time for the result."""
     return utils.safeget(self._result_dict, "start_time")
Esempio n. 11
0
 def end_time(self):
     """Return the Remindo end time for the result."""
     return utils.safeget(self._result_dict, "end_time")
Esempio n. 12
0
 def status(self):
     """Return the Remindo status for the result."""
     return utils.safeget(self._result_dict, "status")
Esempio n. 13
0
 def study_name(self):
     """Return the Remindo study name for the result."""
     return utils.safeget(self._result_dict, "study_name")
Esempio n. 14
0
 def response_candidateResponse(self):
     """Return the candidate response."""
     return utils.safeget(self._item_dict, "response", "RESPONSE",
                          "candidateResponse")
Esempio n. 15
0
 def passed(self):
     """Return the Remindo passed bool for the result."""
     return utils.safeget(self._result_dict, "passed")
Esempio n. 16
0
 def i_answered(self):
     """Return the Remindo item count for the result."""
     return utils.safeget(self._result_dict, "i_answered")
Esempio n. 17
0
 def score_type(self):
     """Return the Remindo score type for the result."""
     return utils.safeget(self._result_dict, "score_type")
Esempio n. 18
0
 def i_review(self):
     """Return the Remindo item in review for the result."""
     return utils.safeget(self._result_dict, "i_review")
Esempio n. 19
0
 def can_change(self):
     """Return the Remindo can change bool for the result."""
     return utils.safeget(self._result_dict, "can_change")
Esempio n. 20
0
 def i_mostlyincorrect(self):
     """Return the Remindo item mostly incorrect for the result."""
     return utils.safeget(self._result_dict, "i_mostlyincorrect")
Esempio n. 21
0
 def api_call_params_code(self):
     """Return the parameter code used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params", "code")
Esempio n. 22
0
 def show_given_answer(self):
     """Return the Remindo show given answer bool for the result."""
     return utils.safeget(self._result_dict, "show_given_answer")
Esempio n. 23
0
 def subscription_id(self):
     """Return the Remindo subscription id for the result."""
     utils.safeget(self._result_dict, "subscription_id")
     return
Esempio n. 24
0
 def show_correct(self):
     """Return the Remindo show correct bool for the result."""
     return utils.safeget(self._result_dict, "show_correct")
Esempio n. 25
0
 def api_call_params_modified_since(self):
     """Return the parameter modified_since used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params",
                          "modified_since")
Esempio n. 26
0
 def show_grade(self):
     """Return the Remindo show grade bool for the result."""
     return utils.safeget(self._result_dict, "show_grade")
Esempio n. 27
0
 def api_call_params_end_time_until(self):
     """Return the parameter end_time_until used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params",
                          "end_time_until")
Esempio n. 28
0
 def report_data(self):
     """Return the Remindo report data bool for the result."""
     return utils.safeget(self._result_dict, "report_data")
Esempio n. 29
0
 def api_call_params_search(self):
     """Return the parameter search used in the api call."""
     return utils.safeget(self._result_dict, "api_call_params", "search")
Esempio n. 30
0
 def response_baseType(self):
     """Return the base type of the item response."""
     return utils.safeget(self._item_dict, "response", "RESPONSE",
                          "baseType")