thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/NotificationRules.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

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)