Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

AuthenticatorMethodSignedNonce

Properties

Name Type Description Notes
settings AuthenticatorMethodSignedNonceAllOfSettings [optional]

Example

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)

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