thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/NetworkPing.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.4 KiB

NetworkPing

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 thousandeyes_sdk.endpoint_test_results.models.network_ping import NetworkPing

# TODO update the JSON string below
json = "{}"
# create an instance of NetworkPing from a JSON string
network_ping_instance = NetworkPing.from_json(json)
# print the JSON string representation of the object
print(NetworkPing.to_json())

# convert the object into a dict
network_ping_dict = network_ping_instance.to_dict()
# create an instance of NetworkPing from a dict
network_ping_from_dict = NetworkPing.from_dict(network_ping_dict)

[Back to Model list] [Back to API list] [Back to README]