mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
38 lines
1.6 KiB
Markdown
38 lines
1.6 KiB
Markdown
# GatewayNetworkPing
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**avg_rtt** | **int** | Ping average response time. | [optional] [readonly]
|
|
**max_rtt** | **int** | Ping maximum response time. | [optional] [readonly]
|
|
**loss** | **float** | Network loss. | [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.gateway_network_ping import GatewayNetworkPing
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of GatewayNetworkPing from a JSON string
|
|
gateway_network_ping_instance = GatewayNetworkPing.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(GatewayNetworkPing.to_json())
|
|
|
|
# convert the object into a dict
|
|
gateway_network_ping_dict = gateway_network_ping_instance.to_dict()
|
|
# create an instance of GatewayNetworkPing from a dict
|
|
gateway_network_ping_from_dict = GatewayNetworkPing.from_dict(gateway_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)
|
|
|
|
|