Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

NotificationsUserResults

Properties

Name Type Description Notes
result NotificationsResult

Example

from twitter_openapi_python_generated.models.notifications_user_results import NotificationsUserResults

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

# convert the object into a dict
notifications_user_results_dict = notifications_user_results_instance.to_dict()
# create an instance of NotificationsUserResults from a dict
notifications_user_results_from_dict = NotificationsUserResults.from_dict(notifications_user_results_dict)

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