mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
37 lines
1.5 KiB
Markdown
37 lines
1.5 KiB
Markdown
# VpnNetworkPing
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**avg_rtt** | **int** | Ping average response time. | [optional] [readonly]
|
|
**max_rtt** | **int** | Ping maximum response time. | [optional] [readonly]
|
|
**mean_dev_rtt** | **int** | Ping mean standard deviation response time. | [optional] [readonly]
|
|
**min_rtt** | **int** | Ping minimum response time. | [optional] [readonly]
|
|
**pkts_received** | **int** | Ping packets received. | [optional] [readonly]
|
|
**pkts_sent** | **int** | Ping packets sent. | [optional] [readonly]
|
|
**error** | **str** | Only present when there is an error. | [optional] [readonly]
|
|
**info_flags** | **List[str]** | | [optional] [readonly]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.endpoint_test_results.models.vpn_network_ping import VpnNetworkPing
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of VpnNetworkPing from a JSON string
|
|
vpn_network_ping_instance = VpnNetworkPing.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(VpnNetworkPing.to_json())
|
|
|
|
# convert the object into a dict
|
|
vpn_network_ping_dict = vpn_network_ping_instance.to_dict()
|
|
# create an instance of VpnNetworkPing from a dict
|
|
vpn_network_ping_from_dict = VpnNetworkPing.from_dict(vpn_network_ping_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)
|
|
|
|
|