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