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

739 B

State

Properties

Name Type Description Notes

Example

from thousandeyes_sdk.alerts.models.state import State

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

# convert the object into a dict
state_dict = state_instance.to_dict()
# create an instance of State from a dict
state_from_dict = State.from_dict(state_dict)

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