Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.55 KB

File metadata and controls

36 lines (27 loc) · 1.55 KB

AuthenticatorValidationChallenge

Authenticator challenge

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-authenticator-validate']
response_errors Dict[str, List[ErrorDetail]] [optional]
pending_user str
pending_user_avatar str
device_challenges List[DeviceChallenge]
configuration_stages List[SelectableStage]

Example

from authentik_client.models.authenticator_validation_challenge import AuthenticatorValidationChallenge

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

# convert the object into a dict
authenticator_validation_challenge_dict = authenticator_validation_challenge_instance.to_dict()
# create an instance of AuthenticatorValidationChallenge from a dict
authenticator_validation_challenge_from_dict = AuthenticatorValidationChallenge.from_dict(authenticator_validation_challenge_dict)

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