| 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] |
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]