Serializer for email authenticator devices
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The human-readable name of this device. | |
| pk | int | [readonly] | |
| str | [readonly] | ||
| user | PartialUser | [readonly] |
from authentik_client.models.email_device import EmailDevice
# TODO update the JSON string below
json = "{}"
# create an instance of EmailDevice from a JSON string
email_device_instance = EmailDevice.from_json(json)
# print the JSON string representation of the object
print(EmailDevice.to_json())
# convert the object into a dict
email_device_dict = email_device_instance.to_dict()
# create an instance of EmailDevice from a dict
email_device_from_dict = EmailDevice.from_dict(email_device_dict)