Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.33 KB

File metadata and controls

35 lines (26 loc) · 2.33 KB

SecurePasswordStoreApplicationSettings

Properties

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 SecurePasswordStoreApplicationSettingsApplication [optional]

Example

from okta.models.secure_password_store_application_settings import SecurePasswordStoreApplicationSettings

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

# convert the object into a dict
secure_password_store_application_settings_dict = secure_password_store_application_settings_instance.to_dict()
# create an instance of SecurePasswordStoreApplicationSettings from a dict
secure_password_store_application_settings_from_dict = SecurePasswordStoreApplicationSettings.from_dict(secure_password_store_application_settings_dict)

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