Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

File metadata and controls

33 lines (24 loc) · 1.29 KB

HrefObjectRulesLink

Properties

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

Example

from okta.models.href_object_rules_link import HrefObjectRulesLink

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

# convert the object into a dict
href_object_rules_link_dict = href_object_rules_link_instance.to_dict()
# create an instance of HrefObjectRulesLink from a dict
href_object_rules_link_from_dict = HrefObjectRulesLink.from_dict(href_object_rules_link_dict)

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