Serializer for Endpoint authenticator devices
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | str | [optional] | |
| name | str | The human-readable name of this device. |
from authentik_client.models.endpoint_device import EndpointDevice
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointDevice from a JSON string
endpoint_device_instance = EndpointDevice.from_json(json)
# print the JSON string representation of the object
print(EndpointDevice.to_json())
# convert the object into a dict
endpoint_device_dict = endpoint_device_instance.to_dict()
# create an instance of EndpointDevice from a dict
endpoint_device_from_dict = EndpointDevice.from_dict(endpoint_device_dict)