Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

TimelineShowAlertRichText.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

TimelineShowAlertRichText

Properties

Name Type Description Notes
entities List[Dict[str, object]] [optional]
text str [optional]

Example

from twitter_openapi_python_generated.models.timeline_show_alert_rich_text import TimelineShowAlertRichText

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

# convert the object into a dict
timeline_show_alert_rich_text_dict = timeline_show_alert_rich_text_instance.to_dict()
# create an instance of TimelineShowAlertRichText from a dict
timeline_show_alert_rich_text_from_dict = TimelineShowAlertRichText.from_dict(timeline_show_alert_rich_text_dict)

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