Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

NotificationsResult

Properties

Name Type Description Notes
typename TypeName
notification_timeline TimelineResult
rest_id str

Example

from twitter_openapi_python_generated.models.notifications_result import NotificationsResult

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

# convert the object into a dict
notifications_result_dict = notifications_result_instance.to_dict()
# create an instance of NotificationsResult from a dict
notifications_result_from_dict = NotificationsResult.from_dict(notifications_result_dict)

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