Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 933 Bytes

File metadata and controls

31 lines (22 loc) · 933 Bytes

TextEntity

Properties

Name Type Description Notes
from_index int
ref TextEntityRef
to_index int

Example

from twitter_openapi_python_generated.models.text_entity import TextEntity

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

# convert the object into a dict
text_entity_dict = text_entity_instance.to_dict()
# create an instance of TextEntity from a dict
text_entity_from_dict = TextEntity.from_dict(text_entity_dict)

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