| 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 | BasicApplicationSettingsApplication | [optional] |
from okta.models.basic_application_settings import BasicApplicationSettings
# TODO update the JSON string below
json = "{}"
# create an instance of BasicApplicationSettings from a JSON string
basic_application_settings_instance = BasicApplicationSettings.from_json(json)
# print the JSON string representation of the object
print(BasicApplicationSettings.to_json())
# convert the object into a dict
basic_application_settings_dict = basic_application_settings_instance.to_dict()
# create an instance of BasicApplicationSettings from a dict
basic_application_settings_from_dict = BasicApplicationSettings.from_dict(basic_application_settings_dict)