Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.42 KB

File metadata and controls

38 lines (29 loc) · 1.42 KB

Authenticator

Properties

Name Type Description Notes
created datetime [optional] [readonly]
id str [optional] [readonly]
key str [optional]
last_updated datetime [optional] [readonly]
name str [optional]
provider AuthenticatorProvider [optional]
settings AuthenticatorSettings [optional]
status LifecycleStatus [optional]
type AuthenticatorType [optional]
links AuthenticatorLinks [optional]

Example

from okta.models.authenticator import Authenticator

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

# convert the object into a dict
authenticator_dict = authenticator_instance.to_dict()
# create an instance of Authenticator from a dict
authenticator_from_dict = Authenticator.from_dict(authenticator_dict)

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