Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.3 KB

File metadata and controls

33 lines (24 loc) · 1.3 KB

HrefObjectClientLink

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_client_link import HrefObjectClientLink

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

# convert the object into a dict
href_object_client_link_dict = href_object_client_link_instance.to_dict()
# create an instance of HrefObjectClientLink from a dict
href_object_client_link_from_dict = HrefObjectClientLink.from_dict(href_object_client_link_dict)

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