Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.81 KB

File metadata and controls

35 lines (26 loc) · 1.81 KB

OrgGeneralSettingLinks

Specifies link relations (see Web Linking) available for the org using the JSON Hypertext Application Language specification

Properties

Name Type Description Notes
contacts OrgGeneralSettingLinksContacts [optional]
logo OrgGeneralSettingLinksLogo [optional]
okta_communication OrgGeneralSettingLinksOktaCommunication [optional]
okta_support OrgGeneralSettingLinksOktaSupport [optional]
preferences OrgGeneralSettingLinksPreferences [optional]
upload_logo OrgGeneralSettingLinksUploadLogo [optional]

Example

from okta.models.org_general_setting_links import OrgGeneralSettingLinks

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

# convert the object into a dict
org_general_setting_links_dict = org_general_setting_links_instance.to_dict()
# create an instance of OrgGeneralSettingLinks from a dict
org_general_setting_links_from_dict = OrgGeneralSettingLinks.from_dict(org_general_setting_links_dict)

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