PingTiming Model
PingTiming Model documentation for Python SDK
Timing information captured during a ping probe
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| client_send_time_unix_nanos | int | Client send time (Unix epoch nanoseconds) | |
| server_received_time_unix_nanos | int | Server received time (Unix epoch nanoseconds) | |
| server_send_time_unix_nanos | int | Server send time (Unix epoch nanoseconds) | |
| client_receive_time_unix_nanos | int | Client receive time (Unix epoch nanoseconds) |
Example
from goodmem_client.models.ping_timing import PingTiming
# TODO update the JSON string below
json = "{}"
# create an instance of PingTiming from a JSON string
ping_timing_instance = PingTiming.from_json(json)
# print the JSON string representation of the object
print(PingTiming.to_json())
# convert the object into a dict
ping_timing_dict = ping_timing_instance.to_dict()
# create an instance of PingTiming from a dict
ping_timing_from_dict = PingTiming.from_dict(ping_timing_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK