Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 872 Bytes

File metadata and controls

29 lines (20 loc) · 872 Bytes

Highlight

Properties

Name Type Description Notes
text_highlights List[TextHighlight]

Example

from twitter_openapi_python_generated.models.highlight import Highlight

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

# convert the object into a dict
highlight_dict = highlight_instance.to_dict()
# create an instance of Highlight from a dict
highlight_from_dict = Highlight.from_dict(highlight_dict)

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