WebAuthnDeviceType Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| aaguid | UUID | ||
| description | str |
from authentik_client.models.web_authn_device_type import WebAuthnDeviceType
# TODO update the JSON string below
json = "{}"
# create an instance of WebAuthnDeviceType from a JSON string
web_authn_device_type_instance = WebAuthnDeviceType.from_json(json)
# print the JSON string representation of the object
print(WebAuthnDeviceType.to_json())
# convert the object into a dict
web_authn_device_type_dict = web_authn_device_type_instance.to_dict()
# create an instance of WebAuthnDeviceType from a dict
web_authn_device_type_from_dict = WebAuthnDeviceType.from_dict(web_authn_device_type_dict)