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