| Name |
Type |
Description |
Notes |
| authentication_frequency |
str |
|
[optional] |
from boldsign.models.authentication_settings import AuthenticationSettings
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticationSettings from a JSON string
authentication_settings_instance = AuthenticationSettings.from_json(json)
# print the JSON string representation of the object
print(AuthenticationSettings.to_json())
# convert the object into a dict
authentication_settings_dict = authentication_settings_instance.to_dict()
# create an instance of AuthenticationSettings from a dict
authentication_settings_from_dict = AuthenticationSettings.from_dict(authentication_settings_dict)
[Back to Model list] [Back to API list] [Back to README]