thousandeyes-sdk-python/agents/docs/Notifications.md

899 B

Notifications

Properties

Name Type Description Notes
notifications Notification [optional]

Example

from agents.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_from_dict = Notifications.from_dict(notifications_dict)

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