Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.51 KB

File metadata and controls

31 lines (22 loc) · 1.51 KB

AuthenticatorMethodSignedNonceAllOfSettings

Properties

Name Type Description Notes
algorithms List[AuthenticatorMethodAlgorithm] [optional]
key_protection PushMethodKeyProtection [optional]
show_sign_in_with_ov ShowSignInWithOV [optional]

Example

from okta.models.authenticator_method_signed_nonce_all_of_settings import AuthenticatorMethodSignedNonceAllOfSettings

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

# convert the object into a dict
authenticator_method_signed_nonce_all_of_settings_dict = authenticator_method_signed_nonce_all_of_settings_instance.to_dict()
# create an instance of AuthenticatorMethodSignedNonceAllOfSettings from a dict
authenticator_method_signed_nonce_all_of_settings_from_dict = AuthenticatorMethodSignedNonceAllOfSettings.from_dict(authenticator_method_signed_nonce_all_of_settings_dict)

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