Settings for Active Directory applications
| Name | Type | Description | Notes |
|---|---|---|---|
| em_opt_in_status | str | The entitlement management opt-in status for the app | [optional] [readonly] |
| identity_store_id | str | Identifies an additional identity store app, if your app supports it. The `identityStoreId` value must be a valid identity store app ID. This identity store app must be created in the same org as your app. | [optional] |
| implicit_assignment | bool | Controls whether Okta automatically assigns users to the app based on the user's role or group membership. | [optional] |
| inline_hook_id | str | Identifier of an inline hook. Inline hooks are outbound calls from Okta to your own custom code, triggered at specific points in Okta process flows. They allow you to integrate custom functionality into those flows. See Inline hooks. | [optional] |
| notes | ApplicationSettingsNotes | [optional] | |
| notifications | ApplicationSettingsNotifications | [optional] | |
| app | ActiveDirectoryApplicationSettingsApplication | [optional] |
from okta.models.active_directory_application_settings import ActiveDirectoryApplicationSettings
# TODO update the JSON string below
json = "{}"
# create an instance of ActiveDirectoryApplicationSettings from a JSON string
active_directory_application_settings_instance = ActiveDirectoryApplicationSettings.from_json(json)
# print the JSON string representation of the object
print(ActiveDirectoryApplicationSettings.to_json())
# convert the object into a dict
active_directory_application_settings_dict = active_directory_application_settings_instance.to_dict()
# create an instance of ActiveDirectoryApplicationSettings from a dict
active_directory_application_settings_from_dict = ActiveDirectoryApplicationSettings.from_dict(active_directory_application_settings_dict)