Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 939 Bytes

File metadata and controls

30 lines (21 loc) · 939 Bytes

LogGeolocation

Properties

Name Type Description Notes
lat float [optional] [readonly]
lon float [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]