|
| 1 | +# ActiveDirectoryApplicationSettings |
| 2 | + |
| 3 | +Settings for Active Directory applications |
| 4 | + |
| 5 | +## Properties |
| 6 | + |
| 7 | +Name | Type | Description | Notes |
| 8 | +------------ | ------------- | ------------- | ------------- |
| 9 | +**em_opt_in_status** | **str** | The entitlement management opt-in status for the app | [optional] [readonly] |
| 10 | +**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] |
| 11 | +**implicit_assignment** | **bool** | Controls whether Okta automatically assigns users to the app based on the user's role or group membership. | [optional] |
| 12 | +**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](/openapi/okta-management/management/tag/InlineHook/). | [optional] |
| 13 | +**notes** | [**ApplicationSettingsNotes**](ApplicationSettingsNotes.md) | | [optional] |
| 14 | +**notifications** | [**ApplicationSettingsNotifications**](ApplicationSettingsNotifications.md) | | [optional] |
| 15 | +**app** | [**ActiveDirectoryApplicationSettingsApplication**](ActiveDirectoryApplicationSettingsApplication.md) | | [optional] |
| 16 | + |
| 17 | +## Example |
| 18 | + |
| 19 | +```python |
| 20 | +from okta.models.active_directory_application_settings import ActiveDirectoryApplicationSettings |
| 21 | + |
| 22 | +# TODO update the JSON string below |
| 23 | +json = "{}" |
| 24 | +# create an instance of ActiveDirectoryApplicationSettings from a JSON string |
| 25 | +active_directory_application_settings_instance = ActiveDirectoryApplicationSettings.from_json(json) |
| 26 | +# print the JSON string representation of the object |
| 27 | +print(ActiveDirectoryApplicationSettings.to_json()) |
| 28 | + |
| 29 | +# convert the object into a dict |
| 30 | +active_directory_application_settings_dict = active_directory_application_settings_instance.to_dict() |
| 31 | +# create an instance of ActiveDirectoryApplicationSettings from a dict |
| 32 | +active_directory_application_settings_from_dict = ActiveDirectoryApplicationSettings.from_dict(active_directory_application_settings_dict) |
| 33 | +``` |
| 34 | +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
| 35 | + |
| 36 | + |
0 commit comments