| Name | Type | Description | Notes |
|---|---|---|---|
| settings | AuthenticatorMethodWebAuthnAllOfSettings | [optional] |
from okta.models.authenticator_method_web_authn import AuthenticatorMethodWebAuthn
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatorMethodWebAuthn from a JSON string
authenticator_method_web_authn_instance = AuthenticatorMethodWebAuthn.from_json(json)
# print the JSON string representation of the object
print(AuthenticatorMethodWebAuthn.to_json())
# convert the object into a dict
authenticator_method_web_authn_dict = authenticator_method_web_authn_instance.to_dict()
# create an instance of AuthenticatorMethodWebAuthn from a dict
authenticator_method_web_authn_from_dict = AuthenticatorMethodWebAuthn.from_dict(authenticator_method_web_authn_dict)