thousandeyes-sdk-python/endpoint/test_results_api/docs/RealUserTestNetworkResults.md
2023-12-11 09:29:15 +00:00

1.1 KiB

RealUserTestNetworkResults

Properties

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

Example

from test_results_api.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_form_dict = real_user_test_network_results.from_dict(real_user_test_network_results_dict)

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