You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromokta.models.org_general_setting_links_contactsimportOrgGeneralSettingLinksContacts# TODO update the JSON string belowjson="{}"# create an instance of OrgGeneralSettingLinksContacts from a JSON stringorg_general_setting_links_contacts_instance=OrgGeneralSettingLinksContacts.from_json(json)
# print the JSON string representation of the objectprint(OrgGeneralSettingLinksContacts.to_json())
# convert the object into a dictorg_general_setting_links_contacts_dict=org_general_setting_links_contacts_instance.to_dict()
# create an instance of OrgGeneralSettingLinksContacts from a dictorg_general_setting_links_contacts_from_dict=OrgGeneralSettingLinksContacts.from_dict(org_general_setting_links_contacts_dict)