Serializer for email authenticator devices
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The human-readable name of this device. |
from authentik_client.models.email_device_request import EmailDeviceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EmailDeviceRequest from a JSON string
email_device_request_instance = EmailDeviceRequest.from_json(json)
# print the JSON string representation of the object
print(EmailDeviceRequest.to_json())
# convert the object into a dict
email_device_request_dict = email_device_request_instance.to_dict()
# create an instance of EmailDeviceRequest from a dict
email_device_request_from_dict = EmailDeviceRequest.from_dict(email_device_request_dict)