| Name | Type | Description | Notes |
|---|---|---|---|
| app_authenticator_enroll_endpoint | str | [optional] | |
| authenticator_id | str | The unique identifier of the app authenticator | [optional] |
| created_date | datetime | [optional] | |
| key | str | [optional] | |
| last_updated | datetime | [optional] | |
| name | str | The authenticator display name | [optional] |
| org_id | str | [optional] | |
| settings | WellKnownAppAuthenticatorConfigurationSettings | [optional] | |
| supported_methods | List[SupportedMethods] | [optional] | |
| type | str | [optional] |
from okta.models.well_known_app_authenticator_configuration import WellKnownAppAuthenticatorConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of WellKnownAppAuthenticatorConfiguration from a JSON string
well_known_app_authenticator_configuration_instance = WellKnownAppAuthenticatorConfiguration.from_json(json)
# print the JSON string representation of the object
print(WellKnownAppAuthenticatorConfiguration.to_json())
# convert the object into a dict
well_known_app_authenticator_configuration_dict = well_known_app_authenticator_configuration_instance.to_dict()
# create an instance of WellKnownAppAuthenticatorConfiguration from a dict
well_known_app_authenticator_configuration_from_dict = WellKnownAppAuthenticatorConfiguration.from_dict(well_known_app_authenticator_configuration_dict)