Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.02 KB

File metadata and controls

34 lines (25 loc) · 2.02 KB

AuthenticatorMethodWebAuthnAllOfSettings

The settings for the WebAuthn authenticator method

Properties

Name Type Description Notes
aaguid_groups List[AAGUIDGroupObject] The FIDO2 Authenticator Attestation Global Unique Identifiers (AAGUID) groups available to the WebAuthn authenticator [optional]
user_verification UserVerificationEnum [optional]
attachment WebAuthnAttachmentEnum [optional]
rp_id WebAuthnRpId [optional]
enable_autofill_ui bool <x-lifecycle-container><x-lifecycle class=&quot;ea&quot;></x-lifecycle></x-lifecycle-container>Enables the passkeys autofill UI to display available WebAuthn discoverable credentials (&quot;resident key&quot;) from the Sign-In Widget username field [optional] [default to False]

Example

from okta.models.authenticator_method_web_authn_all_of_settings import AuthenticatorMethodWebAuthnAllOfSettings

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

# convert the object into a dict
authenticator_method_web_authn_all_of_settings_dict = authenticator_method_web_authn_all_of_settings_instance.to_dict()
# create an instance of AuthenticatorMethodWebAuthnAllOfSettings from a dict
authenticator_method_web_authn_all_of_settings_from_dict = AuthenticatorMethodWebAuthnAllOfSettings.from_dict(authenticator_method_web_authn_all_of_settings_dict)

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