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