Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

DeviceChallenge

Single device challenge

Properties

Name Type Description Notes
device_class DeviceClassesEnum
device_uid str
challenge Dict[str, object]
last_used datetime

Example

from authentik_client.models.device_challenge import DeviceChallenge

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

# convert the object into a dict
device_challenge_dict = device_challenge_instance.to_dict()
# create an instance of DeviceChallenge from a dict
device_challenge_from_dict = DeviceChallenge.from_dict(device_challenge_dict)

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