thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/AgentNotification.md
2024-08-23 09:37:18 +00:00

1.1 KiB

AgentNotification

Alert notification object.

Properties

Name Type Description Notes
email 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)

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