| Name | Type | Description | Notes |
|---|---|---|---|
| settings | AuthenticatorMethodSignedNonceAllOfSettings | [optional] |
from okta.models.authenticator_method_signed_nonce import AuthenticatorMethodSignedNonce
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatorMethodSignedNonce from a JSON string
authenticator_method_signed_nonce_instance = AuthenticatorMethodSignedNonce.from_json(json)
# print the JSON string representation of the object
print(AuthenticatorMethodSignedNonce.to_json())
# convert the object into a dict
authenticator_method_signed_nonce_dict = authenticator_method_signed_nonce_instance.to_dict()
# create an instance of AuthenticatorMethodSignedNonce from a dict
authenticator_method_signed_nonce_from_dict = AuthenticatorMethodSignedNonce.from_dict(authenticator_method_signed_nonce_dict)