Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 992 Bytes

File metadata and controls

28 lines (19 loc) · 992 Bytes

AuthenticatorMethodSimple

Properties

Name Type Description Notes

Example

from okta.models.authenticator_method_simple import AuthenticatorMethodSimple

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

# convert the object into a dict
authenticator_method_simple_dict = authenticator_method_simple_instance.to_dict()
# create an instance of AuthenticatorMethodSimple from a dict
authenticator_method_simple_from_dict = AuthenticatorMethodSimple.from_dict(authenticator_method_simple_dict)

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