Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

DeviceChallengeRequest

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_request import DeviceChallengeRequest

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

# convert the object into a dict
device_challenge_request_dict = device_challenge_request_instance.to_dict()
# create an instance of DeviceChallengeRequest from a dict
device_challenge_request_from_dict = DeviceChallengeRequest.from_dict(device_challenge_request_dict)

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