Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 819 Bytes

File metadata and controls

30 lines (21 loc) · 819 Bytes

Text

Properties

Name Type Description Notes
entities List[TextEntity]
text str

Example

from twitter_openapi_python_generated.models.text import Text

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

# convert the object into a dict
text_dict = text_instance.to_dict()
# create an instance of Text from a dict
text_from_dict = Text.from_dict(text_dict)

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