Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

AuthenticatorMethodBase

Properties

Name Type Description Notes
status LifecycleStatus [optional]
type AuthenticatorMethodType [optional]
links LinksSelfAndLifecycle [optional]

Example

from okta.models.authenticator_method_base import AuthenticatorMethodBase

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

# convert the object into a dict
authenticator_method_base_dict = authenticator_method_base_instance.to_dict()
# create an instance of AuthenticatorMethodBase from a dict
authenticator_method_base_from_dict = AuthenticatorMethodBase.from_dict(authenticator_method_base_dict)

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