Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 920 Bytes

File metadata and controls

30 lines (21 loc) · 920 Bytes

TextHighlight

Properties

Name Type Description Notes
end_index int
start_index int

Example

from twitter_openapi_python_generated.models.text_highlight import TextHighlight

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

# convert the object into a dict
text_highlight_dict = text_highlight_instance.to_dict()
# create an instance of TextHighlight from a dict
text_highlight_from_dict = TextHighlight.from_dict(text_highlight_dict)

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