| 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 import HrefObject
# TODO update the JSON string below
json = "{}"
# create an instance of HrefObject from a JSON string
href_object_instance = HrefObject.from_json(json)
# print the JSON string representation of the object
print(HrefObject.to_json())
# convert the object into a dict
href_object_dict = href_object_instance.to_dict()
# create an instance of HrefObject from a dict
href_object_from_dict = HrefObject.from_dict(href_object_dict)
[Back to Model list] [Back to API list] [Back to README]