thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/PathVisRoute.md
Shahid Hussain Khan d10dffc0a2
[GitHub Bot] Generated python SDK (#39)
Co-authored-by: API Team <api-team@thousandeyes.com>
2024-08-02 10:04:08 +01:00

1.3 KiB

PathVisRoute

Properties

Name Type Description Notes
path_id str Unique ID of path trace. [optional] [readonly]
protocol EndpointTestResultProtocol [optional]
tcp_path_trace_mode TcpPathTraceModeResponse [optional]
udp_path_trace_mode UdpPathTraceModeResponse [optional]
hops **List[PathVisHop]** Array of hop objects indicating each step in the traceroute. [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.path_vis_route import PathVisRoute

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

# convert the object into a dict
path_vis_route_dict = path_vis_route_instance.to_dict()
# create an instance of PathVisRoute from a dict
path_vis_route_from_dict = PathVisRoute.from_dict(path_vis_route_dict)

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