TimelineShowAlert

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
alert_typestr[optional]
client_event_infoClientEventInfo[optional]
color_configDict[str, object][optional]
display_duration_msint[optional]
display_locationstr[optional]
icon_display_infoDict[str, object][optional]
rich_textTimelineShowAlertRichText
trigger_delay_msint[optional]
typeInstructionType
users_resultsList[UserResults]

Example

from twitter_openapi_python_generated.models.timeline_show_alert import TimelineShowAlert

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

# convert the object into a dict
timeline_show_alert_dict = timeline_show_alert_instance.to_dict()
# create an instance of TimelineShowAlert from a dict
timeline_show_alert_from_dict = TimelineShowAlert.from_dict(timeline_show_alert_dict)

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