Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

AuthenticatedSessionGeoIp

Get GeoIP Data

Properties

Name Type Description Notes
continent str
country str
lat float
long float
city str

Example

from authentik_client.models.authenticated_session_geo_ip import AuthenticatedSessionGeoIp

# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatedSessionGeoIp from a JSON string
authenticated_session_geo_ip_instance = AuthenticatedSessionGeoIp.from_json(json)
# print the JSON string representation of the object
print(AuthenticatedSessionGeoIp.to_json())

# convert the object into a dict
authenticated_session_geo_ip_dict = authenticated_session_geo_ip_instance.to_dict()
# create an instance of AuthenticatedSessionGeoIp from a dict
authenticated_session_geo_ip_from_dict = AuthenticatedSessionGeoIp.from_dict(authenticated_session_geo_ip_dict)

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