Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.45 KB

File metadata and controls

33 lines (24 loc) · 1.45 KB

OrgGeneralSettingLinksContacts

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_contacts import OrgGeneralSettingLinksContacts

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

# convert the object into a dict
org_general_setting_links_contacts_dict = org_general_setting_links_contacts_instance.to_dict()
# create an instance of OrgGeneralSettingLinksContacts from a dict
org_general_setting_links_contacts_from_dict = OrgGeneralSettingLinksContacts.from_dict(org_general_setting_links_contacts_dict)

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