The latitude and longitude of the geolocation where an action was performed. The object is formatted according to the ISO 6709 standard.
| Name | Type | Description | Notes |
|---|---|---|---|
| lat | float | Latitude which uses two digits for the integer part | [optional] [readonly] |
| lon | float | Longitude which uses three digits for the integer part | [optional] [readonly] |
from okta.models.log_geolocation import LogGeolocation
# TODO update the JSON string below
json = "{}"
# create an instance of LogGeolocation from a JSON string
log_geolocation_instance = LogGeolocation.from_json(json)
# print the JSON string representation of the object
print(LogGeolocation.to_json())
# convert the object into a dict
log_geolocation_dict = log_geolocation_instance.to_dict()
# create an instance of LogGeolocation from a dict
log_geolocation_from_dict = LogGeolocation.from_dict(log_geolocation_dict)