mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1018 B
1018 B
LegacyAlertDetail
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| state | State | [optional] | |
| severity | Severity | [optional] |
Example
from thousandeyes_sdk.alerts.models.legacy_alert_detail import LegacyAlertDetail
# TODO update the JSON string below
json = "{}"
# create an instance of LegacyAlertDetail from a JSON string
legacy_alert_detail_instance = LegacyAlertDetail.from_json(json)
# print the JSON string representation of the object
print(LegacyAlertDetail.to_json())
# convert the object into a dict
legacy_alert_detail_dict = legacy_alert_detail_instance.to_dict()
# create an instance of LegacyAlertDetail from a dict
legacy_alert_detail_from_dict = LegacyAlertDetail.from_dict(legacy_alert_detail_dict)