Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

EndpointDevice

Serializer for Endpoint authenticator devices

Properties

Name Type Description Notes
pk str [optional]
name str The human-readable name of this device.

Example

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)

[Back to Model list] [Back to API list] [Back to README]