thousandeyes-sdk-python/agents_api/docs/Notifications.md
2023-12-11 09:29:15 +00:00

901 B

Notifications

Properties

Name Type Description Notes
notifications Notification [optional]

Example

from agents_api.models.notifications import Notifications

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

# convert the object into a dict
notifications_dict = notifications_instance.to_dict()
# create an instance of Notifications from a dict
notifications_form_dict = notifications.from_dict(notifications_dict)

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