Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.46 KB

File metadata and controls

34 lines (25 loc) · 1.46 KB

AutoLoginApplicationSettings

Properties

Name Type Description Notes
identity_store_id str [optional]
implicit_assignment bool [optional]
inline_hook_id str [optional]
notes ApplicationSettingsNotes [optional]
notifications ApplicationSettingsNotifications [optional]
sign_on AutoLoginApplicationSettingsSignOn [optional]

Example

from okta.models.auto_login_application_settings import AutoLoginApplicationSettings

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

# convert the object into a dict
auto_login_application_settings_dict = auto_login_application_settings_instance.to_dict()
# create an instance of AutoLoginApplicationSettings from a dict
auto_login_application_settings_from_dict = AutoLoginApplicationSettings.from_dict(auto_login_application_settings_dict)

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