mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.1 KiB
1.1 KiB
AgentNotification
Alert notification object.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| AlertEmail | [optional] | ||
| third_party | **List[AlertIntegrationBase]** | [optional] | |
| webhook | **List[AlertIntegrationBase]** | [optional] |
Example
from thousandeyes_sdk.agents.models.agent_notification import AgentNotification
# TODO update the JSON string below
json = "{}"
# create an instance of AgentNotification from a JSON string
agent_notification_instance = AgentNotification.from_json(json)
# print the JSON string representation of the object
print(AgentNotification.to_json())
# convert the object into a dict
agent_notification_dict = agent_notification_instance.to_dict()
# create an instance of AgentNotification from a dict
agent_notification_from_dict = AgentNotification.from_dict(agent_notification_dict)