Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

ApplicationSettingsNotes

App notes visible to either the admin or end user

Properties

Name Type Description Notes
admin str An app message that's visible to admins [optional]
enduser str A message that's visible in the End-User Dashboard [optional]

Example

from okta.models.application_settings_notes import ApplicationSettingsNotes

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

# convert the object into a dict
application_settings_notes_dict = application_settings_notes_instance.to_dict()
# create an instance of ApplicationSettingsNotes from a dict
application_settings_notes_from_dict = ApplicationSettingsNotes.from_dict(application_settings_notes_dict)

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