Serializer for WebAuthn authenticator devices
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | int | [readonly] | |
| name | str | ||
| created_on | datetime | [readonly] | |
| device_type | WebAuthnDeviceType | [readonly] | |
| aaguid | str | [readonly] | |
| user | PartialUser | [readonly] |
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)