Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 991 Bytes

File metadata and controls

31 lines (22 loc) · 991 Bytes

InputQuestion

Properties

Name Type Description Notes
text str
difficulty_level int [optional]
possible_answers List[IntialQuestionAnswer]

Example

from iblai.models.input_question import InputQuestion

# TODO update the JSON string below
json = "{}"
# create an instance of InputQuestion from a JSON string
input_question_instance = InputQuestion.from_json(json)
# print the JSON string representation of the object
print(InputQuestion.to_json())

# convert the object into a dict
input_question_dict = input_question_instance.to_dict()
# create an instance of InputQuestion from a dict
input_question_from_dict = InputQuestion.from_dict(input_question_dict)

[Back to Model list] [Back to API list] [Back to README]