mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.2 KiB
1.2 KiB
ListNotificationRulesResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_alert_rules | **List[NotificationRule]** | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.agents.models.list_notification_rules_response import ListNotificationRulesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListNotificationRulesResponse from a JSON string
list_notification_rules_response_instance = ListNotificationRulesResponse.from_json(json)
# print the JSON string representation of the object
print(ListNotificationRulesResponse.to_json())
# convert the object into a dict
list_notification_rules_response_dict = list_notification_rules_response_instance.to_dict()
# create an instance of ListNotificationRulesResponse from a dict
list_notification_rules_response_from_dict = ListNotificationRulesResponse.from_dict(list_notification_rules_response_dict)