Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

File metadata and controls

35 lines (26 loc) · 1.17 KB

WebAuthnDevice

Serializer for WebAuthn authenticator devices

Properties

Name Type Description Notes
pk int [readonly]
name str
created_on datetime [readonly]
device_type WebAuthnDeviceType [readonly]
aaguid str [readonly]
user PartialUser [readonly]

Example

from authentik_client.models.web_authn_device import WebAuthnDevice

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

# convert the object into a dict
web_authn_device_dict = web_authn_device_instance.to_dict()
# create an instance of WebAuthnDevice from a dict
web_authn_device_from_dict = WebAuthnDevice.from_dict(web_authn_device_dict)

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