Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

LogGeolocation

The latitude and longitude of the geolocation where an action was performed. The object is formatted according to the ISO 6709 standard.

Properties

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]

Example

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)

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