| 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] |
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)