Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

File metadata and controls

30 lines (21 loc) · 1.33 KB

AuthenticatorDuoStageManualDeviceImportRequest

Properties

Name Type Description Notes
duo_user_id str
username str

Example

from authentik_client.models.authenticator_duo_stage_manual_device_import_request import AuthenticatorDuoStageManualDeviceImportRequest

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

# convert the object into a dict
authenticator_duo_stage_manual_device_import_request_dict = authenticator_duo_stage_manual_device_import_request_instance.to_dict()
# create an instance of AuthenticatorDuoStageManualDeviceImportRequest from a dict
authenticator_duo_stage_manual_device_import_request_from_dict = AuthenticatorDuoStageManualDeviceImportRequest.from_dict(authenticator_duo_stage_manual_device_import_request_dict)

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