thousandeyes-sdk-python/thousandeyes-sdk-test-results/docs/PathVisEndpoint.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

35 lines
1.4 KiB
Markdown

# PathVisEndpoint
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ip_address** | **str** | IP address of the hop | [optional] [readonly]
**mss** | **int** | Maximum segment size in bytes | [optional] [readonly]
**number_of_hops** | **int** | Number of hops for path trace to destination | [optional] [readonly]
**path_id** | **str** | Unique ID of path trace | [optional] [readonly]
**path_mtu** | **int** | MTU sizes on network from agents to the target | [optional] [readonly]
**response_time** | **int** | RTT of the path trace to the destination in milliseconds | [optional] [readonly]
## Example
```python
from thousandeyes_sdk.test_results.models.path_vis_endpoint import PathVisEndpoint
# TODO update the JSON string below
json = "{}"
# create an instance of PathVisEndpoint from a JSON string
path_vis_endpoint_instance = PathVisEndpoint.from_json(json)
# print the JSON string representation of the object
print(PathVisEndpoint.to_json())
# convert the object into a dict
path_vis_endpoint_dict = path_vis_endpoint_instance.to_dict()
# create an instance of PathVisEndpoint from a dict
path_vis_endpoint_from_dict = PathVisEndpoint.from_dict(path_vis_endpoint_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)