Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.21 KB

File metadata and controls

44 lines (35 loc) · 2.21 KB

AuthenticatorWebAuthnStage

AuthenticatorWebAuthnStage Serializer

Properties

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]
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]
device_type_restrictions_obj List[WebAuthnDeviceType] [readonly]
max_attempts int [optional]

Example

from authentik_client.models.authenticator_web_authn_stage import AuthenticatorWebAuthnStage

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

# convert the object into a dict
authenticator_web_authn_stage_dict = authenticator_web_authn_stage_instance.to_dict()
# create an instance of AuthenticatorWebAuthnStage from a dict
authenticator_web_authn_stage_from_dict = AuthenticatorWebAuthnStage.from_dict(authenticator_web_authn_stage_dict)

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