mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 22:36:52 +00:00
992 B
992 B
NotificationRules
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_alert_rules | **List[NotificationRule]** | [optional] |
Example
from thousandeyes_sdk.agents.models.notification_rules import NotificationRules
# TODO update the JSON string below
json = "{}"
# create an instance of NotificationRules from a JSON string
notification_rules_instance = NotificationRules.from_json(json)
# print the JSON string representation of the object
print(NotificationRules.to_json())
# convert the object into a dict
notification_rules_dict = notification_rules_instance.to_dict()
# create an instance of NotificationRules from a dict
notification_rules_from_dict = NotificationRules.from_dict(notification_rules_dict)