mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
778 B
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)