mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.3 KiB
1.3 KiB
GetEndpointLocalNetworks200Response
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| local_networks | **List[LocalNetworkResult]** | [optional] | |
| links | SelfLinksLinks | [optional] |
Example
from endpoint_test_results.models.get_endpoint_local_networks200_response import GetEndpointLocalNetworks200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetEndpointLocalNetworks200Response from a JSON string
get_endpoint_local_networks200_response_instance = GetEndpointLocalNetworks200Response.from_json(json)
# print the JSON string representation of the object
print(GetEndpointLocalNetworks200Response.to_json())
# convert the object into a dict
get_endpoint_local_networks200_response_dict = get_endpoint_local_networks200_response_instance.to_dict()
# create an instance of GetEndpointLocalNetworks200Response from a dict
get_endpoint_local_networks200_response_from_dict = GetEndpointLocalNetworks200Response.from_dict(get_endpoint_local_networks200_response_dict)