Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

ApplicationSettings

Properties

Name Type Description Notes
identity_store_id str [optional]
implicit_assignment bool [optional]
inline_hook_id str [optional]
notes ApplicationSettingsNotes [optional]
notifications ApplicationSettingsNotifications [optional]

Example

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)

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