Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.34 KB

File metadata and controls

29 lines (20 loc) · 1.34 KB

WellKnownAppAuthenticatorConfigurationSettings

Properties

Name Type Description Notes
user_verification UserVerificationEnum [optional]

Example

from okta.models.well_known_app_authenticator_configuration_settings import WellKnownAppAuthenticatorConfigurationSettings

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

# convert the object into a dict
well_known_app_authenticator_configuration_settings_dict = well_known_app_authenticator_configuration_settings_instance.to_dict()
# create an instance of WellKnownAppAuthenticatorConfigurationSettings from a dict
well_known_app_authenticator_configuration_settings_from_dict = WellKnownAppAuthenticatorConfigurationSettings.from_dict(well_known_app_authenticator_configuration_settings_dict)

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