thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/RealUserEndpointTestResultsRequest.md
2024-09-25 07:39:02 +00:00

1.3 KiB

RealUserEndpointTestResultsRequest

Properties

Name Type Description Notes
search_filters RealUserEndpointTestResultRequestFilter [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.real_user_endpoint_test_results_request import RealUserEndpointTestResultsRequest

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

# convert the object into a dict
real_user_endpoint_test_results_request_dict = real_user_endpoint_test_results_request_instance.to_dict()
# create an instance of RealUserEndpointTestResultsRequest from a dict
real_user_endpoint_test_results_request_from_dict = RealUserEndpointTestResultsRequest.from_dict(real_user_endpoint_test_results_request_dict)

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