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

AuthenticatorProviderConfigurationUserNameTemplate

Properties

Name Type Description Notes
template str [optional]

Example

from okta.models.authenticator_provider_configuration_user_name_template import AuthenticatorProviderConfigurationUserNameTemplate

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

# convert the object into a dict
authenticator_provider_configuration_user_name_template_dict = authenticator_provider_configuration_user_name_template_instance.to_dict()
# create an instance of AuthenticatorProviderConfigurationUserNameTemplate from a dict
authenticator_provider_configuration_user_name_template_from_dict = AuthenticatorProviderConfigurationUserNameTemplate.from_dict(authenticator_provider_configuration_user_name_template_dict)

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