mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.4 KiB
1.4 KiB
RealUserTestCoordinates
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_test_coordinates import RealUserTestCoordinates
# TODO update the JSON string below
json = "{}"
# create an instance of RealUserTestCoordinates from a JSON string
real_user_test_coordinates_instance = RealUserTestCoordinates.from_json(json)
# print the JSON string representation of the object
print(RealUserTestCoordinates.to_json())
# convert the object into a dict
real_user_test_coordinates_dict = real_user_test_coordinates_instance.to_dict()
# create an instance of RealUserTestCoordinates from a dict
real_user_test_coordinates_from_dict = RealUserTestCoordinates.from_dict(real_user_test_coordinates_dict)