NotificationTemplate

May 7, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName[optional]
from_usersList[object][optional]
target_objectsList[object][optional]

Example

from twitter_openapi_python_generated.models.notification_template import NotificationTemplate

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

# convert the object into a dict
notification_template_dict = notification_template_instance.to_dict()
# create an instance of NotificationTemplate from a dict
notification_template_from_dict = NotificationTemplate.from_dict(notification_template_dict)

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