Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.06 KB

File metadata and controls

36 lines (27 loc) · 2.06 KB

PatchedAuthenticatorValidateStageRequest

AuthenticatorValidateStage Serializer

Properties

Name Type Description Notes
name str [optional]
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]

Example

from authentik_client.models.patched_authenticator_validate_stage_request import PatchedAuthenticatorValidateStageRequest

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

# convert the object into a dict
patched_authenticator_validate_stage_request_dict = patched_authenticator_validate_stage_request_instance.to_dict()
# create an instance of PatchedAuthenticatorValidateStageRequest from a dict
patched_authenticator_validate_stage_request_from_dict = PatchedAuthenticatorValidateStageRequest.from_dict(patched_authenticator_validate_stage_request_dict)

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