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