mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.5 KiB
1.5 KiB
RealUserEndpointTestCoordinates
Contains approximate GPS location of the endpoint agent, based on endpoint agent’s public IP address.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| latitude | float | Numeric representations of GPS coordinates. | [optional] [readonly] |
| location | str | Represents named geographical location. | [optional] [readonly] |
| longitude | float | Numeric representations of GPS coordinates. | [optional] [readonly] |
Example
from thousandeyes_sdk.endpoint_test_results.models.real_user_endpoint_test_coordinates import RealUserEndpointTestCoordinates
# TODO update the JSON string below
json = "{}"
# create an instance of RealUserEndpointTestCoordinates from a JSON string
real_user_endpoint_test_coordinates_instance = RealUserEndpointTestCoordinates.from_json(json)
# print the JSON string representation of the object
print(RealUserEndpointTestCoordinates.to_json())
# convert the object into a dict
real_user_endpoint_test_coordinates_dict = real_user_endpoint_test_coordinates_instance.to_dict()
# create an instance of RealUserEndpointTestCoordinates from a dict
real_user_endpoint_test_coordinates_from_dict = RealUserEndpointTestCoordinates.from_dict(real_user_endpoint_test_coordinates_dict)