mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 22:36:52 +00:00
30 lines
992 B
Markdown
30 lines
992 B
Markdown
# NotificationRules
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**agent_alert_rules** | [**List[NotificationRule]**](NotificationRule.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|