mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.7 KiB
1.7 KiB
RealUserTestNetworkGatewayPing
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
from endpoint_test_results.models.real_user_test_network_gateway_ping import RealUserTestNetworkGatewayPing
# TODO update the JSON string below
json = "{}"
# create an instance of RealUserTestNetworkGatewayPing from a JSON string
real_user_test_network_gateway_ping_instance = RealUserTestNetworkGatewayPing.from_json(json)
# print the JSON string representation of the object
print(RealUserTestNetworkGatewayPing.to_json())
# convert the object into a dict
real_user_test_network_gateway_ping_dict = real_user_test_network_gateway_ping_instance.to_dict()
# create an instance of RealUserTestNetworkGatewayPing from a dict
real_user_test_network_gateway_ping_from_dict = RealUserTestNetworkGatewayPing.from_dict(real_user_test_network_gateway_ping_dict)