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