Specifies link relations (see Web Linking) available for the org using the JSON Hypertext Application Language specification
| 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] |
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)