mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 09:25:30 +00:00
30 lines
1.1 KiB
Markdown
30 lines
1.1 KiB
Markdown
# RealUserTestNetworkResults
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**results** | [**List[RealUserTestNetworkResult]**](RealUserTestNetworkResult.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|