Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

File metadata and controls

36 lines (27 loc) · 1.3 KB

PasswordChallenge

Password challenge UI fields

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-password']
response_errors Dict[str, List[ErrorDetail]] [optional]
pending_user str
pending_user_avatar str
recovery_url str [optional]
allow_show_password bool [optional] [default to False]

Example

from authentik_client.models.password_challenge import PasswordChallenge

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

# convert the object into a dict
password_challenge_dict = password_challenge_instance.to_dict()
# create an instance of PasswordChallenge from a dict
password_challenge_from_dict = PasswordChallenge.from_dict(password_challenge_dict)

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