Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.37 KB

File metadata and controls

32 lines (23 loc) · 1.37 KB

LinksAppAndUser

Specifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of resources related to the application user.

Properties

Name Type Description Notes
app HrefObjectAppLink [optional]
group HrefObjectGroupLink [optional]
user HrefObjectUserLink [optional]

Example

from okta.models.links_app_and_user import LinksAppAndUser

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

# convert the object into a dict
links_app_and_user_dict = links_app_and_user_instance.to_dict()
# create an instance of LinksAppAndUser from a dict
links_app_and_user_from_dict = LinksAppAndUser.from_dict(links_app_and_user_dict)

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