TimelineNotification

May 7, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
idstr
item_typeContentItemType
notification_iconstr
notification_urlSocialContextLandingUrl
rich_messageRichMessage
templateNotificationTemplate
timestamp_msstr

Example

from twitter_openapi_python_generated.models.timeline_notification import TimelineNotification

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

# convert the object into a dict
timeline_notification_dict = timeline_notification_instance.to_dict()
# create an instance of TimelineNotification from a dict
timeline_notification_from_dict = TimelineNotification.from_dict(timeline_notification_dict)

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