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

823 B

LegacyState

Properties

Name Type Description Notes

Example

from thousandeyes_sdk.alerts.models.legacy_state import LegacyState

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

# convert the object into a dict
legacy_state_dict = legacy_state_instance.to_dict()
# create an instance of LegacyState from a dict
legacy_state_from_dict = LegacyState.from_dict(legacy_state_dict)

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