Get parsed user agent
| Name | Type | Description | Notes |
|---|---|---|---|
| device | AuthenticatedSessionUserAgentDevice | ||
| os | AuthenticatedSessionUserAgentOs | ||
| user_agent | AuthenticatedSessionUserAgentUserAgent | ||
| string | str |
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)