mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.2 KiB
1.2 KiB
EndpointRunScheduledInstantTestResult
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] |
Example
from thousandeyes_sdk.endpoint_instant_tests.models.endpoint_run_scheduled_instant_test_result import EndpointRunScheduledInstantTestResult
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointRunScheduledInstantTestResult from a JSON string
endpoint_run_scheduled_instant_test_result_instance = EndpointRunScheduledInstantTestResult.from_json(json)
# print the JSON string representation of the object
print(EndpointRunScheduledInstantTestResult.to_json())
# convert the object into a dict
endpoint_run_scheduled_instant_test_result_dict = endpoint_run_scheduled_instant_test_result_instance.to_dict()
# create an instance of EndpointRunScheduledInstantTestResult from a dict
endpoint_run_scheduled_instant_test_result_from_dict = EndpointRunScheduledInstantTestResult.from_dict(endpoint_run_scheduled_instant_test_result_dict)