Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.48 KB

File metadata and controls

33 lines (24 loc) · 1.48 KB

OrgGeneralSettingLinksUploadLogo

Properties

Name Type Description Notes
hints HrefHints [optional]
href str Link URI
name str Link name [optional] [readonly]
templated bool Indicates whether the link object's `href` property is a URI template. [optional] [readonly]
type str The media type of the link. If omitted, it is implicitly `application/json`. [optional] [readonly]

Example

from okta.models.org_general_setting_links_upload_logo import OrgGeneralSettingLinksUploadLogo

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

# convert the object into a dict
org_general_setting_links_upload_logo_dict = org_general_setting_links_upload_logo_instance.to_dict()
# create an instance of OrgGeneralSettingLinksUploadLogo from a dict
org_general_setting_links_upload_logo_from_dict = OrgGeneralSettingLinksUploadLogo.from_dict(org_general_setting_links_upload_logo_dict)

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