Password challenge UI fields
| 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] |
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)