thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/ListNotificationRulesResponse.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

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)

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