Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 834 Bytes

RelatedText.md

File metadata and controls

29 lines (20 loc) · 834 Bytes

RelatedText

Properties

Name Type Description Notes
question str

Example

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)

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