Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.4 KB

File metadata and controls

37 lines (28 loc) · 1.4 KB

AuthenticatorDuoChallenge

Duo Challenge

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-authenticator-duo']
response_errors Dict[str, List[ErrorDetail]] [optional]
pending_user str
pending_user_avatar str
activation_barcode str
activation_code str
stage_uuid str

Example

from authentik_client.models.authenticator_duo_challenge import AuthenticatorDuoChallenge

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

# convert the object into a dict
authenticator_duo_challenge_dict = authenticator_duo_challenge_instance.to_dict()
# create an instance of AuthenticatorDuoChallenge from a dict
authenticator_duo_challenge_from_dict = AuthenticatorDuoChallenge.from_dict(authenticator_duo_challenge_dict)

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