Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.77 KB

File metadata and controls

37 lines (28 loc) · 1.77 KB

AuthenticatorWebAuthnStageRequest

AuthenticatorWebAuthnStage Serializer

Properties

Name Type Description Notes
name str
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]
friendly_name str [optional]
user_verification UserVerificationEnum [optional]
authenticator_attachment AuthenticatorAttachmentEnum [optional]
resident_key_requirement ResidentKeyRequirementEnum [optional]
device_type_restrictions List[UUID] [optional]
max_attempts int [optional]

Example

from authentik_client.models.authenticator_web_authn_stage_request import AuthenticatorWebAuthnStageRequest

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

# convert the object into a dict
authenticator_web_authn_stage_request_dict = authenticator_web_authn_stage_request_instance.to_dict()
# create an instance of AuthenticatorWebAuthnStageRequest from a dict
authenticator_web_authn_stage_request_from_dict = AuthenticatorWebAuthnStageRequest.from_dict(authenticator_web_authn_stage_request_dict)

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