thousandeyes-sdk-python/thousandeyes-sdk-alerts/docs/Severity.md
2025-06-18 13:45:38 +00:00

778 B

Severity

Properties

Name Type Description Notes

Example

from thousandeyes_sdk.alerts.models.severity import Severity

# TODO update the JSON string below
json = "{}"
# create an instance of Severity from a JSON string
severity_instance = Severity.from_json(json)
# print the JSON string representation of the object
print(Severity.to_json())

# convert the object into a dict
severity_dict = severity_instance.to_dict()
# create an instance of Severity from a dict
severity_from_dict = Severity.from_dict(severity_dict)

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