AuthenticatorValidateStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| not_configured_action | NotConfiguredActionEnum | [optional] | |
| device_classes | List[DeviceClassesEnum] | Device classes which can be used to authenticate | [optional] |
| configuration_stages | List[UUID] | Stages used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again. | [optional] |
| last_auth_threshold | str | If any of the user's device has been used within this threshold, this stage will be skipped | [optional] |
| webauthn_user_verification | UserVerificationEnum | Enforce user verification for WebAuthn devices. | [optional] |
| webauthn_allowed_device_types | List[UUID] | [optional] |
from authentik_client.models.authenticator_validate_stage_request import AuthenticatorValidateStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatorValidateStageRequest from a JSON string
authenticator_validate_stage_request_instance = AuthenticatorValidateStageRequest.from_json(json)
# print the JSON string representation of the object
print(AuthenticatorValidateStageRequest.to_json())
# convert the object into a dict
authenticator_validate_stage_request_dict = authenticator_validate_stage_request_instance.to_dict()
# create an instance of AuthenticatorValidateStageRequest from a dict
authenticator_validate_stage_request_from_dict = AuthenticatorValidateStageRequest.from_dict(authenticator_validate_stage_request_dict)