mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
37 lines
1.8 KiB
Markdown
37 lines
1.8 KiB
Markdown
# 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**](NetworkMetrics.md) | | [optional]
|
|
**vpn** | [**NetworkMetrics**](NetworkMetrics.md) | | [optional]
|
|
**proxy** | [**NetworkMetrics**](NetworkMetrics.md) | | [optional]
|
|
**system_metrics** | [**SystemMetrics**](SystemMetrics.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|