mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 08:56:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.2 KiB
1.2 KiB
EndpointRealUserTestsResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| real_user_tests | **List[EndpointRealUserTest]** | Real user test domain monitoring profiles. |
Example
from thousandeyes_sdk.endpoint_tests.models.endpoint_real_user_tests_response import EndpointRealUserTestsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointRealUserTestsResponse from a JSON string
endpoint_real_user_tests_response_instance = EndpointRealUserTestsResponse.from_json(json)
# print the JSON string representation of the object
print(EndpointRealUserTestsResponse.to_json())
# convert the object into a dict
endpoint_real_user_tests_response_dict = endpoint_real_user_tests_response_instance.to_dict()
# create an instance of EndpointRealUserTestsResponse from a dict
endpoint_real_user_tests_response_from_dict = EndpointRealUserTestsResponse.from_dict(endpoint_real_user_tests_response_dict)