Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

OrgPreferences

Properties

Name Type Description Notes
show_end_user_footer bool Indicates if the footer is shown on the End-User Dashboard [optional] [readonly]
links OrgPreferencesLinks [optional]

Example

from okta.models.org_preferences import OrgPreferences

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

# convert the object into a dict
org_preferences_dict = org_preferences_instance.to_dict()
# create an instance of OrgPreferences from a dict
org_preferences_from_dict = OrgPreferences.from_dict(org_preferences_dict)

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