Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.51 KB

File metadata and controls

36 lines (27 loc) · 1.51 KB

AuthenticatorBase

Properties

Name Type Description Notes
created datetime Timestamp when the authenticator was created [optional] [readonly]
id str A unique identifier for the authenticator [optional] [readonly]
key AuthenticatorKeyEnum [optional]
last_updated datetime Timestamp when the authenticator was last modified [optional] [readonly]
name str Display name of the authenticator [optional]
status LifecycleStatus [optional]
type AuthenticatorType [optional]
links AuthenticatorLinks [optional]

Example

from okta.models.authenticator_base import AuthenticatorBase

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

# convert the object into a dict
authenticator_base_dict = authenticator_base_instance.to_dict()
# create an instance of AuthenticatorBase from a dict
authenticator_base_from_dict = AuthenticatorBase.from_dict(authenticator_base_dict)

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