Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.07 KB

File metadata and controls

48 lines (39 loc) · 2.07 KB

IdentificationChallenge

Identification challenges with all UI elements

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-identification']
response_errors Dict[str, List[ErrorDetail]] [optional]
user_fields List[str]
pending_user_identifier str [optional]
password_fields bool
allow_show_password bool [optional] [default to False]
application_pre str [optional]
application_pre_launch str [optional]
flow_designation FlowDesignationEnum
captcha_stage CaptchaChallenge [optional]
enroll_url str [optional]
recovery_url str [optional]
passwordless_url str [optional]
primary_action str
sources List[LoginSource] [optional]
show_source_labels bool
enable_remember_me bool [optional] [default to True]
passkey_challenge Dict[str, object] [optional]

Example

from authentik_client.models.identification_challenge import IdentificationChallenge

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

# convert the object into a dict
identification_challenge_dict = identification_challenge_instance.to_dict()
# create an instance of IdentificationChallenge from a dict
identification_challenge_from_dict = IdentificationChallenge.from_dict(identification_challenge_dict)

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