Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.79 KB

File metadata and controls

38 lines (29 loc) · 1.79 KB

WellKnownAppAuthenticatorConfiguration

Properties

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]

Example

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)

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