thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/RealUserEndpointTestNetworkResult.md
2024-09-09 13:37:12 +00:00

1.9 KiB

RealUserEndpointTestNetworkResult

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 thousandeyes_sdk.endpoint_test_results.models.real_user_endpoint_test_network_result import RealUserEndpointTestNetworkResult

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

# convert the object into a dict
real_user_endpoint_test_network_result_dict = real_user_endpoint_test_network_result_instance.to_dict()
# create an instance of RealUserEndpointTestNetworkResult from a dict
real_user_endpoint_test_network_result_from_dict = RealUserEndpointTestNetworkResult.from_dict(real_user_endpoint_test_network_result_dict)

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