Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.4 KB

File metadata and controls

37 lines (28 loc) · 1.4 KB

TimelineShowAlert

Properties

Name Type Description Notes
alert_type str [optional]
color_config Dict[str, object] [optional]
display_duration_ms int [optional]
display_location str [optional]
icon_display_info Dict[str, object] [optional]
rich_text TimelineShowAlertRichText
trigger_delay_ms int [optional]
type InstructionType
users_results List[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]