Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

File metadata and controls

33 lines (24 loc) · 1.4 KB

AuthenticatorProviderConfiguration

Properties

Name Type Description Notes
auth_port int [optional]
host_name str [optional]
instance_id str [optional]
shared_secret str [optional]
user_name_template AuthenticatorProviderConfigurationUserNameTemplate [optional]

Example

from okta.models.authenticator_provider_configuration import AuthenticatorProviderConfiguration

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

# convert the object into a dict
authenticator_provider_configuration_dict = authenticator_provider_configuration_instance.to_dict()
# create an instance of AuthenticatorProviderConfiguration from a dict
authenticator_provider_configuration_from_dict = AuthenticatorProviderConfiguration.from_dict(authenticator_provider_configuration_dict)

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