Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

SourceLinksAllOfSchema

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