Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

HrefObjectUserLink

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_user_link import HrefObjectUserLink

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

# convert the object into a dict
href_object_user_link_dict = href_object_user_link_instance.to_dict()
# create an instance of HrefObjectUserLink from a dict
href_object_user_link_from_dict = HrefObjectUserLink.from_dict(href_object_user_link_dict)

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