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

1.4 KiB
Raw Blame History

RealUserTestCoordinates

Contains approximate GPS location of the endpoint agent, based on endpoint agents 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)

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