Name | Type | Description | Notes |
---|---|---|---|
question | str |
from iblai.models.related_text import RelatedText
# TODO update the JSON string below
json = "{}"
# create an instance of RelatedText from a JSON string
related_text_instance = RelatedText.from_json(json)
# print the JSON string representation of the object
print(RelatedText.to_json())
# convert the object into a dict
related_text_dict = related_text_instance.to_dict()
# create an instance of RelatedText from a dict
related_text_from_dict = RelatedText.from_dict(related_text_dict)