Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

File metadata and controls

33 lines (24 loc) · 1.38 KB

UserTypeLinksAllOfSchema

Properties

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]

Example

from okta.models.user_type_links_all_of_schema import UserTypeLinksAllOfSchema

# TODO update the JSON string below
json = "{}"
# create an instance of UserTypeLinksAllOfSchema from a JSON string
user_type_links_all_of_schema_instance = UserTypeLinksAllOfSchema.from_json(json)
# print the JSON string representation of the object
print(UserTypeLinksAllOfSchema.to_json())

# convert the object into a dict
user_type_links_all_of_schema_dict = user_type_links_all_of_schema_instance.to_dict()
# create an instance of UserTypeLinksAllOfSchema from a dict
user_type_links_all_of_schema_from_dict = UserTypeLinksAllOfSchema.from_dict(user_type_links_all_of_schema_dict)

[Back to Model list] [Back to API list] [Back to README]