| Name |
Type |
Description |
Notes |
| hints |
HrefHints |
|
[optional] |
| href |
str |
Link URI |
|
| name |
str |
Link name |
[optional] [readonly] |
| templated |
bool |
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] |
from okta.models.href_object_role_link import HrefObjectRoleLink
# TODO update the JSON string below
json = "{}"
# create an instance of HrefObjectRoleLink from a JSON string
href_object_role_link_instance = HrefObjectRoleLink.from_json(json)
# print the JSON string representation of the object
print(HrefObjectRoleLink.to_json())
# convert the object into a dict
href_object_role_link_dict = href_object_role_link_instance.to_dict()
# create an instance of HrefObjectRoleLink from a dict
href_object_role_link_from_dict = HrefObjectRoleLink.from_dict(href_object_role_link_dict)
[Back to Model list] [Back to API list] [Back to README]