thousandeyes-sdk-python/agents_api/docs/NotificationRules.md
2023-12-11 09:29:15 +00:00

978 B

NotificationRules

Properties

Name Type Description Notes
agent_alert_rules **List[NotificationRule]** [optional]

Example

from agents_api.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_form_dict = notification_rules.from_dict(notification_rules_dict)

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