mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
33 lines
1.4 KiB
Markdown
33 lines
1.4 KiB
Markdown
# 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
|
||
|
||
```python
|
||
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||
|
||
|