| Name | Type | Description | Notes |
|---|---|---|---|
| identity_store_id | str | [optional] | |
| implicit_assignment | bool | [optional] | |
| inline_hook_id | str | [optional] | |
| notes | ApplicationSettingsNotes | [optional] | |
| notifications | ApplicationSettingsNotifications | [optional] |
from okta.models.application_settings import ApplicationSettings
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationSettings from a JSON string
application_settings_instance = ApplicationSettings.from_json(json)
# print the JSON string representation of the object
print(ApplicationSettings.to_json())
# convert the object into a dict
application_settings_dict = application_settings_instance.to_dict()
# create an instance of ApplicationSettings from a dict
application_settings_from_dict = ApplicationSettings.from_dict(application_settings_dict)