Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

DuoDeviceEnrollmentStatus

Properties

Name Type Description Notes
duo_response DuoResponseEnum

Example

from authentik_client.models.duo_device_enrollment_status import DuoDeviceEnrollmentStatus

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

# convert the object into a dict
duo_device_enrollment_status_dict = duo_device_enrollment_status_instance.to_dict()
# create an instance of DuoDeviceEnrollmentStatus from a dict
duo_device_enrollment_status_from_dict = DuoDeviceEnrollmentStatus.from_dict(duo_device_enrollment_status_dict)

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