Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.49 KB

File metadata and controls

35 lines (26 loc) · 1.49 KB

SamlApplicationSettings

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]
app SamlApplicationSettingsApplication [optional]
sign_on SamlApplicationSettingsSignOn [optional]

Example

from okta.models.saml_application_settings import SamlApplicationSettings

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

# convert the object into a dict
saml_application_settings_dict = saml_application_settings_instance.to_dict()
# create an instance of SamlApplicationSettings from a dict
saml_application_settings_from_dict = SamlApplicationSettings.from_dict(saml_application_settings_dict)

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