Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

AuthenticatedSessionUserAgentDevice

User agent device

Properties

Name Type Description Notes
brand str
family str
model str

Example

from authentik_client.models.authenticated_session_user_agent_device import AuthenticatedSessionUserAgentDevice

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

# convert the object into a dict
authenticated_session_user_agent_device_dict = authenticated_session_user_agent_device_instance.to_dict()
# create an instance of AuthenticatedSessionUserAgentDevice from a dict
authenticated_session_user_agent_device_from_dict = AuthenticatedSessionUserAgentDevice.from_dict(authenticated_session_user_agent_device_dict)

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