Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

File metadata and controls

33 lines (24 loc) · 1.38 KB

AuthenticatedSessionUserAgent

Get parsed user agent

Properties

Name Type Description Notes
device AuthenticatedSessionUserAgentDevice
os AuthenticatedSessionUserAgentOs
user_agent AuthenticatedSessionUserAgentUserAgent
string str

Example

from authentik_client.models.authenticated_session_user_agent import AuthenticatedSessionUserAgent

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

# convert the object into a dict
authenticated_session_user_agent_dict = authenticated_session_user_agent_instance.to_dict()
# create an instance of AuthenticatedSessionUserAgent from a dict
authenticated_session_user_agent_from_dict = AuthenticatedSessionUserAgent.from_dict(authenticated_session_user_agent_dict)

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