PasswordStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| backends | List[BackendsEnum] | Selection of backends to test the password against. | [optional] |
| configure_flow | UUID | Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. | [optional] |
| failed_attempts_before_cancel | int | How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage. | [optional] |
| allow_show_password | bool | When enabled, provides a 'show password' button with the password input field. | [optional] |
from authentik_client.models.patched_password_stage_request import PatchedPasswordStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedPasswordStageRequest from a JSON string
patched_password_stage_request_instance = PatchedPasswordStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedPasswordStageRequest.to_json())
# convert the object into a dict
patched_password_stage_request_dict = patched_password_stage_request_instance.to_dict()
# create an instance of PatchedPasswordStageRequest from a dict
patched_password_stage_request_from_dict = PatchedPasswordStageRequest.from_dict(patched_password_stage_request_dict)