| Name | Type | Description | Notes |
|---|---|---|---|
| status | LifecycleStatus | [optional] | |
| type | AuthenticatorMethodType | [optional] | |
| links | LinksSelfAndLifecycle | [optional] |
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)