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

1.8 KiB

RealUserTestNetworkResult

Properties

Name Type Description Notes
agent_id str Unique ID of endpoint agent, from `/endpoint/agents` endpoint. [optional] [readonly]
var_date datetime UTC date when endpoint real user test took place (ISO date-time format). [optional] [readonly]
id str Endpoint real user test ID. Each endpoint real user test occurrence has a unique ID. [optional] [readonly]
round_id int Epoch time (seconds) indicating the start time of the round. [optional] [readonly]
destination NetworkMetrics [optional]
vpn NetworkMetrics [optional]
proxy NetworkMetrics [optional]
system_metrics SystemMetrics [optional]

Example

from endpoint_test_results.models.real_user_test_network_result import RealUserTestNetworkResult

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

# convert the object into a dict
real_user_test_network_result_dict = real_user_test_network_result_instance.to_dict()
# create an instance of RealUserTestNetworkResult from a dict
real_user_test_network_result_from_dict = RealUserTestNetworkResult.from_dict(real_user_test_network_result_dict)

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