thousandeyes-sdk-python/thousandeyes-sdk-alerts/docs/LegacySeverity.md
2025-06-02 16:33:01 +00:00

862 B

LegacySeverity

Properties

Name Type Description Notes

Example

from thousandeyes_sdk.alerts.models.legacy_severity import LegacySeverity

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

# convert the object into a dict
legacy_severity_dict = legacy_severity_instance.to_dict()
# create an instance of LegacySeverity from a dict
legacy_severity_from_dict = LegacySeverity.from_dict(legacy_severity_dict)

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