Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

WebAuthnDeviceRequest

Serializer for WebAuthn authenticator devices

Properties

Name Type Description Notes
name str

Example

from authentik_client.models.web_authn_device_request import WebAuthnDeviceRequest

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

# convert the object into a dict
web_authn_device_request_dict = web_authn_device_request_instance.to_dict()
# create an instance of WebAuthnDeviceRequest from a dict
web_authn_device_request_from_dict = WebAuthnDeviceRequest.from_dict(web_authn_device_request_dict)

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