thousandeyes-sdk-python/thousandeyes-sdk-endpoint-instant-tests/docs/EndpointRunScheduledInstantTestResult.md
2024-09-25 07:39:02 +00:00

30 lines
1.2 KiB
Markdown

# EndpointRunScheduledInstantTestResult
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **str** | | [optional]
## Example
```python
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)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)