TextHighlight
June 7, 2024 ยท View on GitHub
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)