thousandeyes-sdk-python/endpoint_test_results/docs/RealUserTestNetworkResults.md

1.1 KiB

RealUserTestNetworkResults

Properties

Name Type Description Notes
results **List[RealUserTestNetworkResult]** [optional]

Example

from endpoint_test_results.models.real_user_test_network_results import RealUserTestNetworkResults

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

# convert the object into a dict
real_user_test_network_results_dict = real_user_test_network_results_instance.to_dict()
# create an instance of RealUserTestNetworkResults from a dict
real_user_test_network_results_from_dict = RealUserTestNetworkResults.from_dict(real_user_test_network_results_dict)

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