Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

File metadata and controls

33 lines (24 loc) · 1.09 KB

StaticDevice

Serializer for static authenticator devices

Properties

Name Type Description Notes
name str The human-readable name of this device.
token_set List[StaticDeviceToken] [readonly]
pk int [readonly]
user PartialUser [readonly]

Example

from authentik_client.models.static_device import StaticDevice

# TODO update the JSON string below
json = "{}"
# create an instance of StaticDevice from a JSON string
static_device_instance = StaticDevice.from_json(json)
# print the JSON string representation of the object
print(StaticDevice.to_json())

# convert the object into a dict
static_device_dict = static_device_instance.to_dict()
# create an instance of StaticDevice from a dict
static_device_from_dict = StaticDevice.from_dict(static_device_dict)

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