Exemple #1
0
 def response_choiceSequence(self):
     """Return the choice sequence."""
     return utils.safeget(self._item_dict, "response", "RESPONSE",
                          "choiceSequence")
Exemple #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")
Exemple #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")
Exemple #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")
Exemple #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")
Exemple #6
0
 def grade_formatted(self):
     """Return the Remindo grade formatted for the result."""
     return utils.safeget(self._result_dict, "grade_formatted")
Exemple #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")
Exemple #8
0
 def max_score(self):
     """Return the Remindo max score for the result."""
     return utils.safeget(self._result_dict, "max_score")
Exemple #9
0
 def i_right(self):
     """Return the Remindo item answered right for the result."""
     return utils.safeget(self._result_dict, "i_right")
Exemple #10
0
 def start_time(self):
     """Return the Remindo start time for the result."""
     return utils.safeget(self._result_dict, "start_time")
Exemple #11
0
 def end_time(self):
     """Return the Remindo end time for the result."""
     return utils.safeget(self._result_dict, "end_time")
Exemple #12
0
 def status(self):
     """Return the Remindo status for the result."""
     return utils.safeget(self._result_dict, "status")
Exemple #13
0
 def study_name(self):
     """Return the Remindo study name for the result."""
     return utils.safeget(self._result_dict, "study_name")
Exemple #14
0
 def response_candidateResponse(self):
     """Return the candidate response."""
     return utils.safeget(self._item_dict, "response", "RESPONSE",
                          "candidateResponse")
Exemple #15
0
 def passed(self):
     """Return the Remindo passed bool for the result."""
     return utils.safeget(self._result_dict, "passed")
Exemple #16
0
 def i_answered(self):
     """Return the Remindo item count for the result."""
     return utils.safeget(self._result_dict, "i_answered")
Exemple #17
0
 def score_type(self):
     """Return the Remindo score type for the result."""
     return utils.safeget(self._result_dict, "score_type")
Exemple #18
0
 def i_review(self):
     """Return the Remindo item in review for the result."""
     return utils.safeget(self._result_dict, "i_review")
Exemple #19
0
 def can_change(self):
     """Return the Remindo can change bool for the result."""
     return utils.safeget(self._result_dict, "can_change")
Exemple #20
0
 def i_mostlyincorrect(self):
     """Return the Remindo item mostly incorrect for the result."""
     return utils.safeget(self._result_dict, "i_mostlyincorrect")
Exemple #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")
Exemple #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")
Exemple #23
0
 def subscription_id(self):
     """Return the Remindo subscription id for the result."""
     utils.safeget(self._result_dict, "subscription_id")
     return
Exemple #24
0
 def show_correct(self):
     """Return the Remindo show correct bool for the result."""
     return utils.safeget(self._result_dict, "show_correct")
Exemple #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")
Exemple #26
0
 def show_grade(self):
     """Return the Remindo show grade bool for the result."""
     return utils.safeget(self._result_dict, "show_grade")
Exemple #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")
Exemple #28
0
 def report_data(self):
     """Return the Remindo report data bool for the result."""
     return utils.safeget(self._result_dict, "report_data")
Exemple #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")
Exemple #30
0
 def response_baseType(self):
     """Return the base type of the item response."""
     return utils.safeget(self._item_dict, "response", "RESPONSE",
                          "baseType")