AuthenticatorValidateStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [readonly] | |
| name | str | ||
| component | str | Get object type so that we know how to edit the object | [readonly] |
| verbose_name | str | Return object's verbose_name | [readonly] |
| verbose_name_plural | str | Return object's plural verbose_name | [readonly] |
| meta_model_name | str | Return internal model name | [readonly] |
| flow_set | List[FlowSet] | [readonly] | |
| 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] | |
| webauthn_allowed_device_types_obj | List[WebAuthnDeviceType] | [readonly] |
from authentik_client.models.authenticator_validate_stage import AuthenticatorValidateStage
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatorValidateStage from a JSON string
authenticator_validate_stage_instance = AuthenticatorValidateStage.from_json(json)
# print the JSON string representation of the object
print(AuthenticatorValidateStage.to_json())
# convert the object into a dict
authenticator_validate_stage_dict = authenticator_validate_stage_instance.to_dict()
# create an instance of AuthenticatorValidateStage from a dict
authenticator_validate_stage_from_dict = AuthenticatorValidateStage.from_dict(authenticator_validate_stage_dict)