mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.1 KiB
1.1 KiB
BaseAlertAllOfMeta
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| version | int | Indicates the number of times this alert has re-entered the 'trigger' state after being suppressed. It starts at 1 and increments whenever a real-time ASW ends and the alert conditions remain active. | [optional] |
Example
from alerts.models.base_alert_all_of_meta import BaseAlertAllOfMeta
# TODO update the JSON string below
json = "{}"
# create an instance of BaseAlertAllOfMeta from a JSON string
base_alert_all_of_meta_instance = BaseAlertAllOfMeta.from_json(json)
# print the JSON string representation of the object
print(BaseAlertAllOfMeta.to_json())
# convert the object into a dict
base_alert_all_of_meta_dict = base_alert_all_of_meta_instance.to_dict()
# create an instance of BaseAlertAllOfMeta from a dict
base_alert_all_of_meta_from_dict = BaseAlertAllOfMeta.from_dict(base_alert_all_of_meta_dict)